diff options
author | Brad King <brad.king@kitware.com> | 2011-09-23 13:07:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-09-23 14:10:01 (GMT) |
commit | 3d5632ed59d3d46298304d20d3f11f9d1da02f93 (patch) | |
tree | 808deb3a6b06fd4ea925218cb54f5c1d9b138b9a /Source/cmGlobalVisualStudio11Win64Generator.cxx | |
parent | 8c280435dfd746a897f6ce6696ba27571f195424 (diff) | |
download | CMake-3d5632ed59d3d46298304d20d3f11f9d1da02f93.zip CMake-3d5632ed59d3d46298304d20d3f11f9d1da02f93.tar.gz CMake-3d5632ed59d3d46298304d20d3f11f9d1da02f93.tar.bz2 |
Add Visual Studio 11 generator for x86 and x64 tools
Diffstat (limited to 'Source/cmGlobalVisualStudio11Win64Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio11Win64Generator.cxx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio11Win64Generator.cxx b/Source/cmGlobalVisualStudio11Win64Generator.cxx new file mode 100644 index 0000000..10c9027 --- /dev/null +++ b/Source/cmGlobalVisualStudio11Win64Generator.cxx @@ -0,0 +1,33 @@ +/*============================================================================ + CMake - Cross Platform Makefile Generator + Copyright 2000-2011 Kitware, Inc., Insight Software Consortium + + Distributed under the OSI-approved BSD License (the "License"); + see accompanying file Copyright.txt for details. + + This software is distributed WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the License for more information. +============================================================================*/ +#include "cmGlobalVisualStudio11Win64Generator.h" +#include "cmMakefile.h" +#include "cmake.h" + +//---------------------------------------------------------------------------- +void cmGlobalVisualStudio11Win64Generator +::GetDocumentation(cmDocumentationEntry& entry) const +{ + entry.Name = this->GetName(); + entry.Brief = "Generates Visual Studio 11 Win64 project files."; + entry.Full = ""; +} + +//---------------------------------------------------------------------------- +void cmGlobalVisualStudio11Win64Generator +::AddPlatformDefinitions(cmMakefile* mf) +{ + this->cmGlobalVisualStudio11Generator::AddPlatformDefinitions(mf); + mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE"); + mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "x64"); + mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "x64"); +} |