From 6a312b9746f2239f2033636eac2b1c9f9ae4330f Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 15 Oct 2008 16:50:55 -0400 Subject: [PATCH] ENH: run the right cmake --- Tests/CMakeBuildTest.cmake.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Tests/CMakeBuildTest.cmake.in b/Tests/CMakeBuildTest.cmake.in index 10abc9e63..246757fc5 100644 --- a/Tests/CMakeBuildTest.cmake.in +++ b/Tests/CMakeBuildTest.cmake.in @@ -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)