diff options
author | Patrick Gansterer <paroga@paroga.com> | 2012-07-21 13:37:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-22 19:08:40 (GMT) |
commit | 2c7a451de003782b1ba5e47ab377f33f1fa5c4e5 (patch) | |
tree | 8d5700d778df484bbeab7eb5a893fe346373fce8 /Source/cmGlobalVisualStudio10Win64Generator.cxx | |
parent | addefc2ae3b33a75a7152730146b46b319118a24 (diff) | |
download | CMake-2c7a451de003782b1ba5e47ab377f33f1fa5c4e5.zip CMake-2c7a451de003782b1ba5e47ab377f33f1fa5c4e5.tar.gz CMake-2c7a451de003782b1ba5e47ab377f33f1fa5c4e5.tar.bz2 |
VS: Cleanup AddPlatformDefinitions() of Visual Studio generators
Move adding of definitions into cmGlobalVisualStudioGenerator to
share code and avoid duplicate architecture string literals.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Win64Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Win64Generator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio10Win64Generator.cxx b/Source/cmGlobalVisualStudio10Win64Generator.cxx index 49dc473..d0a0c49 100644 --- a/Source/cmGlobalVisualStudio10Win64Generator.cxx +++ b/Source/cmGlobalVisualStudio10Win64Generator.cxx @@ -16,6 +16,7 @@ //---------------------------------------------------------------------------- cmGlobalVisualStudio10Win64Generator::cmGlobalVisualStudio10Win64Generator() { + this->ArchitectureId = "x64"; } //---------------------------------------------------------------------------- @@ -33,8 +34,6 @@ void cmGlobalVisualStudio10Win64Generator { this->cmGlobalVisualStudio10Generator::AddPlatformDefinitions(mf); mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE"); - mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "x64"); - mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "x64"); } //---------------------------------------------------------------------------- |