diff options
author | Brad King <brad.king@kitware.com> | 2023-06-13 17:48:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-06-13 18:20:48 (GMT) |
commit | 536c1de1d442c46c23e40ae7b3f60f1a34b11134 (patch) | |
tree | 9251f59c3a6978a05d9ae4e0c0d44f2a770b07fa /Source/cmake.cxx | |
parent | f444f172c3c00c3aa61395a9eb3a80fef6bd9528 (diff) | |
download | CMake-536c1de1d442c46c23e40ae7b3f60f1a34b11134.zip CMake-536c1de1d442c46c23e40ae7b3f60f1a34b11134.tar.gz CMake-536c1de1d442c46c23e40ae7b3f60f1a34b11134.tar.bz2 |
Drop Visual Studio 11 2012 generator
This generator has been deprecated since CMake 3.25. Remove it.
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()); |