ENH: run the right cmake

This commit is contained in:
Bill Hoffman 2008-10-15 16:50:55 -04:00
parent 3fc5ca34f9
commit 6a312b9746
1 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,8 @@
make_directory("@CMAKE_BUILD_TEST_BINARY_DIR@")
# run cmake in the binary directory
execute_process(COMMAND "@CMAKE_CMAKE_COMMAND@"
message("running: ${CMAKE_COMMAND}")
execute_process(COMMAND "${CMAKE_COMMAND}"
"@CMAKE_BUILD_TEST_SOURCE_DIR@"
"-G@CMAKE_TEST_GENERATOR@"
WORKING_DIRECTORY "@CMAKE_BUILD_TEST_BINARY_DIR@"
@ -12,7 +13,8 @@ if(RESULT)
endif(RESULT)
# Now use the --build option to build the project
execute_process(COMMAND "@CMAKE_CMAKE_COMMAND@"
message("running: ${CMAKE_COMMAND} --build")
execute_process(COMMAND "${CMAKE_COMMAND}"
--build "@CMAKE_BUILD_TEST_BINARY_DIR@" --config Debug
RESULT_VARIABLE RESULT)
if(RESULT)