diff options
author | Brad King <brad.king@kitware.com> | 2014-09-12 14:37:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-09-15 14:26:59 (GMT) |
commit | 29bd843e8bf8edde3cade3f565c9f5a042d14ca3 (patch) | |
tree | 981f57954b56f37e3dbe058c2d2850c58c22d0dd /Source/CTest/cmCTestConfigureCommand.cxx | |
parent | eb7d8156492c353f9972bdf6e2203657f5d6592e (diff) | |
download | CMake-29bd843e8bf8edde3cade3f565c9f5a042d14ca3.zip CMake-29bd843e8bf8edde3cade3f565c9f5a042d14ca3.tar.gz CMake-29bd843e8bf8edde3cade3f565c9f5a042d14ca3.tar.bz2 |
CTest: Use -A option to pass generator platform selection
This is less verbose than defining CMAKE_GENERATOR_PLATFORM.
Diffstat (limited to 'Source/CTest/cmCTestConfigureCommand.cxx')
-rw-r--r-- | Source/CTest/cmCTestConfigureCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestConfigureCommand.cxx b/Source/CTest/cmCTestConfigureCommand.cxx index 8ab5037..ef62fd3 100644 --- a/Source/CTest/cmCTestConfigureCommand.cxx +++ b/Source/CTest/cmCTestConfigureCommand.cxx @@ -122,7 +122,7 @@ cmCTestGenericHandler* cmCTestConfigureCommand::InitializeHandler() this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR_PLATFORM"); if(cmakeGeneratorPlatform && *cmakeGeneratorPlatform) { - cmakeConfigureCommand += " \"-DCMAKE_GENERATOR_PLATFORM="; + cmakeConfigureCommand += " \"-A"; cmakeConfigureCommand += cmakeGeneratorPlatform; cmakeConfigureCommand += "\""; } |