diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 11:24:45 -0400 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 11:24:45 -0400 |
commit | cd875fe7816fdfb71c5970754f54f927a8c68321 (patch) | |
tree | 9191ed54f86171ff9031957927620a9dae3d537c /Tests/CTestTest | |
parent | dcb3bf0548dd60422fe47f44945f41502e20c10e (diff) | |
download | cmake-cd875fe7816fdfb71c5970754f54f927a8c68321.tar.gz |
ENH: Handle spaces in the path
Diffstat (limited to 'Tests/CTestTest')
-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 bae14bec23..074c26cc4a 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@\"" ) |