summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestConfigureCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-09-12 14:37:07 (GMT)
committerBrad King <brad.king@kitware.com>2014-09-15 14:26:59 (GMT)
commit29bd843e8bf8edde3cade3f565c9f5a042d14ca3 (patch)
tree981f57954b56f37e3dbe058c2d2850c58c22d0dd /Source/CTest/cmCTestConfigureCommand.cxx
parenteb7d8156492c353f9972bdf6e2203657f5d6592e (diff)
downloadCMake-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.cxx2
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 += "\"";
}