diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-09-03 16:08:54 +0300 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-09-04 10:42:05 +0300 |
commit | c51c5308b9d3243fec791fb39ca7691706b037e7 (patch) | |
tree | 5cb1fdd83071947ace7de1626c873c8fecb35bb4 /tests | |
parent | 3b170ade86c57f3f073438d9c91d59ec56b9ae73 (diff) |
Remove the need to pass CMAKE_MODULE_PATH to CMake by weakly setting it in the toolchain file.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_other.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index dbaabd84..c3efb051 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -301,7 +301,6 @@ f.close() # Run Cmake cmd = ['cmake', '-DCMAKE_TOOLCHAIN_FILE='+path_from_root('cmake', 'Platform', 'Emscripten.cmake'), '-DCMAKE_BUILD_TYPE=' + configuration, - '-DCMAKE_MODULE_PATH=' + path_from_root('cmake').replace('\\', '/'), '-G', generator, cmakelistsdir] ret = Popen(cmd, stdout=None if verbose else PIPE, stderr=None if verbose else PIPE).communicate() if len(ret) > 1 and ret[1] != None and len(ret[1].strip()) > 0: |