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/cmake.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/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 41c67e2..05699da 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -68,6 +68,8 @@ # include "cmGlobalVisualStudio10Generator.h" # include "cmGlobalVisualStudio10IA64Generator.h" # include "cmGlobalVisualStudio10Win64Generator.h" +# include "cmGlobalVisualStudio11Generator.h" +# include "cmGlobalVisualStudio11Win64Generator.h" # include "cmGlobalVisualStudio8Win64Generator.h" # include "cmGlobalBorlandMakefileGenerator.h" # include "cmGlobalNMakeMakefileGenerator.h" @@ -2580,6 +2582,10 @@ void cmake::AddDefaultGenerators() &cmGlobalVisualStudio10IA64Generator::New; this->Generators[cmGlobalVisualStudio10Win64Generator::GetActualName()] = &cmGlobalVisualStudio10Win64Generator::New; + this->Generators[cmGlobalVisualStudio11Generator::GetActualName()] = + &cmGlobalVisualStudio11Generator::New; + this->Generators[cmGlobalVisualStudio11Win64Generator::GetActualName()] = + &cmGlobalVisualStudio11Win64Generator::New; this->Generators[cmGlobalVisualStudio71Generator::GetActualName()] = &cmGlobalVisualStudio71Generator::New; this->Generators[cmGlobalVisualStudio8Generator::GetActualName()] = |