diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 15:24:45 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 15:24:45 (GMT) |
commit | cd875fe7816fdfb71c5970754f54f927a8c68321 (patch) | |
tree | 9191ed54f86171ff9031957927620a9dae3d537c | |
parent | dcb3bf0548dd60422fe47f44945f41502e20c10e (diff) | |
download | CMake-cd875fe7816fdfb71c5970754f54f927a8c68321.zip CMake-cd875fe7816fdfb71c5970754f54f927a8c68321.tar.gz CMake-cd875fe7816fdfb71c5970754f54f927a8c68321.tar.bz2 |
ENH: Handle spaces in the path
-rw-r--r-- | Tests/CTestTest/test.cmake.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CTestTest/test.cmake.in b/Tests/CTestTest/test.cmake.in index bae14be..074c26c 100644 --- a/Tests/CTestTest/test.cmake.in +++ b/Tests/CTestTest/test.cmake.in @@ -15,12 +15,12 @@ SET (CTEST_NOTES_FILE "@CMAKE_CURRENT_BINARY_DIR@/Note.txt") # which ctest command to use for running the dashboard SET (CTEST_COMMAND - "@CTEST_COMMAND@ -T Start -T Configure -T Build -T Test -T Submit -M Experimental -A ${CTEST_NOTES_FILE} -R SystemInformation -E CTestTest" + "\"@CTEST_COMMAND@\" -T Start -T Configure -T Build -T Test -T Submit -M Experimental -A ${CTEST_NOTES_FILE} -R SystemInformation -E CTestTest" ) # what cmake command to use for configuring this dashboard SET (CTEST_CMAKE_COMMAND - "@CMAKE_COMMAND@" + "\"@CMAKE_COMMAND@\"" ) |