diff options
| author | Brad King <brad.king@kitware.com> | 2023-06-14 13:17:50 (GMT) |
|---|---|---|
| committer | Kitware Robot <kwrobot@kitware.com> | 2023-06-14 13:17:53 (GMT) |
| commit | e06b2a526c0d0e8f671b32e28da02176df345ad3 (patch) | |
| tree | a95eb360538886d33cec6a785e77925f5d2d0ba4 /Source/cmake.cxx | |
| parent | c42fb292e928463b30546aea43d73a121741e5bb (diff) | |
| parent | 536c1de1d442c46c23e40ae7b3f60f1a34b11134 (diff) | |
| download | CMake-e06b2a526c0d0e8f671b32e28da02176df345ad3.zip CMake-e06b2a526c0d0e8f671b32e28da02176df345ad3.tar.gz CMake-e06b2a526c0d0e8f671b32e28da02176df345ad3.tar.bz2 | |
Merge topic 'remove-vs11-generator'
536c1de1d4 Drop Visual Studio 11 2012 generator
f444f172c3 cmVisualStudio10TargetGenerator: Remove unused VS-10-only code
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !8562
Diffstat (limited to 'Source/cmake.cxx')
| -rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 791569c..1fa6ba1 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -94,7 +94,6 @@ # include "cmGlobalBorlandMakefileGenerator.h" # include "cmGlobalJOMMakefileGenerator.h" # include "cmGlobalNMakeMakefileGenerator.h" -# include "cmGlobalVisualStudio11Generator.h" # include "cmGlobalVisualStudio12Generator.h" # include "cmGlobalVisualStudio14Generator.h" # include "cmGlobalVisualStudio9Generator.h" @@ -2605,7 +2604,6 @@ std::unique_ptr<cmGlobalGenerator> cmake::EvaluateDefaultGlobalGenerator() static VSVersionedGenerator const vsGenerators[] = { { "14.0", "Visual Studio 14 2015" }, // { "12.0", "Visual Studio 12 2013" }, // - { "11.0", "Visual Studio 11 2012" }, // { "9.0", "Visual Studio 9 2008" } }; static const char* const vsEntries[] = { @@ -2990,7 +2988,6 @@ void cmake::AddDefaultGenerators() cmGlobalVisualStudioVersionedGenerator::NewFactory15()); this->Generators.push_back(cmGlobalVisualStudio14Generator::NewFactory()); this->Generators.push_back(cmGlobalVisualStudio12Generator::NewFactory()); - this->Generators.push_back(cmGlobalVisualStudio11Generator::NewFactory()); this->Generators.push_back(cmGlobalVisualStudio9Generator::NewFactory()); this->Generators.push_back(cmGlobalBorlandMakefileGenerator::NewFactory()); this->Generators.push_back(cmGlobalNMakeMakefileGenerator::NewFactory()); |
