diff options
author | Brad King <brad.king@kitware.com> | 2013-12-06 20:52:41 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-12-06 20:52:41 (GMT) |
commit | 8ee6f3199a22b2602083f3cf6090c2a1cfdf67ed (patch) | |
tree | afc1f979cfbca9cb4e98b14914d4bde245c17bbb | |
parent | ce598cc838c717132a122a97c5e21b99f11fe23b (diff) | |
parent | ef7c11ee31b371bd07bc32991a671da757602213 (diff) | |
download | CMake-8ee6f3199a22b2602083f3cf6090c2a1cfdf67ed.zip CMake-8ee6f3199a22b2602083f3cf6090c2a1cfdf67ed.tar.gz CMake-8ee6f3199a22b2602083f3cf6090c2a1cfdf67ed.tar.bz2 |
Merge topic 'cleanup-build-commands'
ef7c11e Tests: Fix standalone build of tests with nested projects
-rw-r--r-- | Tests/ExportImport/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 4 | ||||
-rw-r--r-- | Tests/MacRuntimePath/CMakeLists.txt | 4 |
3 files changed, 10 insertions, 1 deletions
diff --git a/Tests/ExportImport/CMakeLists.txt b/Tests/ExportImport/CMakeLists.txt index 8be8d33..02a0371 100644 --- a/Tests/ExportImport/CMakeLists.txt +++ b/Tests/ExportImport/CMakeLists.txt @@ -1,5 +1,8 @@ cmake_minimum_required (VERSION 2.7.20090711) project(ExportImport C CXX) +if(NOT DEFINED CMAKE_TEST_MAKEPROGRAM AND NOT CMAKE_GENERATOR MATCHES "Visual Studio") + set(CMAKE_TEST_MAKEPROGRAM "${CMAKE_MAKE_PROGRAM}") +endif() # Wipe out the install tree to make sure the exporter works. add_custom_command( diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index 8f165ce..adc4308 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -1,5 +1,9 @@ cmake_minimum_required (VERSION 2.6) project(testf C CXX Fortran) +if(NOT DEFINED CMAKE_TEST_MAKEPROGRAM AND NOT CMAKE_GENERATOR MATCHES "Visual Studio") + set(CMAKE_TEST_MAKEPROGRAM "${CMAKE_MAKE_PROGRAM}") +endif() + message("CTEST_FULL_OUTPUT ") set(CMAKE_VERBOSE_MAKEFILE 1) message("ENV_FLAGS = $ENV{FFLAGS}") diff --git a/Tests/MacRuntimePath/CMakeLists.txt b/Tests/MacRuntimePath/CMakeLists.txt index a87b41e..5c7b921 100644 --- a/Tests/MacRuntimePath/CMakeLists.txt +++ b/Tests/MacRuntimePath/CMakeLists.txt @@ -1,6 +1,8 @@ cmake_minimum_required (VERSION 2.8) project(MacRuntimePath) - +if(NOT DEFINED CMAKE_TEST_MAKEPROGRAM AND NOT CMAKE_GENERATOR MATCHES "Visual Studio") + set(CMAKE_TEST_MAKEPROGRAM "${CMAKE_MAKE_PROGRAM}") +endif() # Wipe out the install tree to make sure the exporter works. add_custom_command( |