diff options
author | Brad King <brad.king@kitware.com> | 2014-07-17 20:16:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-17 20:17:35 (GMT) |
commit | eeb60102e813c6c69546e4257a332ede4e234171 (patch) | |
tree | f9860ee64eb4ea96425ba99a5c3bcec42d99402a /Source/cmGlobalVisualStudioGenerator.cxx | |
parent | ecb34faaaba841aac6dae722dd2c6256a1472d74 (diff) | |
download | CMake-eeb60102e813c6c69546e4257a332ede4e234171.zip CMake-eeb60102e813c6c69546e4257a332ede4e234171.tar.gz CMake-eeb60102e813c6c69546e4257a332ede4e234171.tar.bz2 |
VS: Refactor CMAKE_FORCE_*64 platform definitions
Remove the general infrastructure for these additional platform
definitions and hard-code the only two special cases that used
it. They are only for historical reasons so no new such cases
should be added.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index c5a0e29..2dab23c 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -23,7 +23,6 @@ //---------------------------------------------------------------------------- cmGlobalVisualStudioGenerator::cmGlobalVisualStudioGenerator() { - this->AdditionalPlatformDefinition = ""; } //---------------------------------------------------------------------------- @@ -478,15 +477,6 @@ void cmGlobalVisualStudioGenerator::FindMakeProgram(cmMakefile* mf) } //---------------------------------------------------------------------------- -void cmGlobalVisualStudioGenerator::AddPlatformDefinitions(cmMakefile* mf) -{ - if(!this->AdditionalPlatformDefinition.empty()) - { - mf->AddDefinition(this->AdditionalPlatformDefinition, "TRUE"); - } -} - -//---------------------------------------------------------------------------- std::string cmGlobalVisualStudioGenerator::GetUtilityDepend(cmTarget const* target) { |