CTEST_CUSTOM_* parameter have to be put in a CTestCustum.cmake file which itself has to be in the build directory

This commit is contained in:
Gael Guennebaud
2011-02-15 12:39:45 +01:00
parent 578d6f7ced
commit 2f15f74218
3 changed files with 7 additions and 5 deletions

View File

@@ -278,7 +278,7 @@ add_subdirectory(Eigen)
add_subdirectory(doc EXCLUDE_FROM_ALL)
# CMake/Ctest does not allow us to change the build command,
# so we have to workaround by directely editing the generated DartConfiguration.tcl file
# so we have to workaround by directly editing the generated DartConfiguration.tcl file
# save CMAKE_MAKE_PROGRAM
set(CMAKE_MAKE_PROGRAM_SAVE ${CMAKE_MAKE_PROGRAM})
# and set a fake one
@@ -297,6 +297,8 @@ set(CMAKE_MAKE_PROGRAM ${CMAKE_MAKE_PROGRAM_SAVE})
unset(CMAKE_MAKE_PROGRAM_SAVE)
unset(EIGEN_MAKECOMMAND_PLACEHOLDER)
configure_file(${CMAKE_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_BINARY_DIR}/CTestCustom.cmake)
if(EIGEN_LEAVE_TEST_IN_ALL_TARGET)
add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest