diff options
author | Brad King <brad.king@kitware.com> | 2022-09-26 15:49:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-09-26 19:43:04 (GMT) |
commit | 8d6f015d59262c53cda4394defaba9b4ae1278dd (patch) | |
tree | 3e8088fa7a17805197443de9fec0f70ec6a0971d /Source/cmake.cxx | |
parent | eb6e2ef7f61de1dd4ff6ec39e886d5fa8cf9aea7 (diff) | |
download | CMake-8d6f015d59262c53cda4394defaba9b4ae1278dd.zip CMake-8d6f015d59262c53cda4394defaba9b4ae1278dd.tar.gz CMake-8d6f015d59262c53cda4394defaba9b4ae1278dd.tar.bz2 |
Drop Visual Studio 10 2010 generator
This generator has been deprecated since CMake 3.22. 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 3b105e3..28b25c1 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -83,7 +83,6 @@ # include "cmGlobalBorlandMakefileGenerator.h" # include "cmGlobalJOMMakefileGenerator.h" # include "cmGlobalNMakeMakefileGenerator.h" -# include "cmGlobalVisualStudio10Generator.h" # include "cmGlobalVisualStudio11Generator.h" # include "cmGlobalVisualStudio12Generator.h" # include "cmGlobalVisualStudio14Generator.h" @@ -2365,7 +2364,6 @@ std::unique_ptr<cmGlobalGenerator> cmake::EvaluateDefaultGlobalGenerator() { "14.0", "Visual Studio 14 2015" }, // { "12.0", "Visual Studio 12 2013" }, // { "11.0", "Visual Studio 11 2012" }, // - { "10.0", "Visual Studio 10 2010" }, // { "9.0", "Visual Studio 9 2008" } }; static const char* const vsEntries[] = { @@ -2694,7 +2692,6 @@ void cmake::AddDefaultGenerators() this->Generators.push_back(cmGlobalVisualStudio14Generator::NewFactory()); this->Generators.push_back(cmGlobalVisualStudio12Generator::NewFactory()); this->Generators.push_back(cmGlobalVisualStudio11Generator::NewFactory()); - this->Generators.push_back(cmGlobalVisualStudio10Generator::NewFactory()); this->Generators.push_back(cmGlobalVisualStudio9Generator::NewFactory()); this->Generators.push_back(cmGlobalBorlandMakefileGenerator::NewFactory()); this->Generators.push_back(cmGlobalNMakeMakefileGenerator::NewFactory()); |