summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudioGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-05-06 16:40:04 (GMT)
committerBrad King <brad.king@kitware.com>2024-05-08 14:37:34 (GMT)
commit03c31b0395eaabbfd76d255f85d50b1df1437aef (patch)
tree064c3d5fd7598b3cbd71e57115d81126feb54922 /Source/cmGlobalVisualStudioGenerator.cxx
parent88c70dde34e76b79111adecc31493e9222e96e9c (diff)
downloadCMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.zip
CMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.tar.gz
CMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.tar.bz2
Drop Visual Studio 9 2008 generator
This generator has been deprecated since CMake 3.27. Remove it.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r--Source/cmGlobalVisualStudioGenerator.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx
index 6fdc32c..f96a84c 100644
--- a/Source/cmGlobalVisualStudioGenerator.cxx
+++ b/Source/cmGlobalVisualStudioGenerator.cxx
@@ -104,8 +104,6 @@ std::string const& cmGlobalVisualStudioGenerator::GetPlatformName() const
const char* cmGlobalVisualStudioGenerator::GetIDEVersion() const
{
switch (this->Version) {
- case cmGlobalVisualStudioGenerator::VSVersion::VS9:
- return "9.0";
case cmGlobalVisualStudioGenerator::VSVersion::VS12:
return "12.0";
case cmGlobalVisualStudioGenerator::VSVersion::VS14:
@@ -127,10 +125,6 @@ void cmGlobalVisualStudioGenerator::WriteSLNHeader(std::ostream& fout)
fout << '\n';
switch (this->Version) {
- case cmGlobalVisualStudioGenerator::VSVersion::VS9:
- fout << "Microsoft Visual Studio Solution File, Format Version 10.00\n";
- fout << "# Visual Studio 2008\n";
- break;
case cmGlobalVisualStudioGenerator::VSVersion::VS12:
fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n";
if (this->ExpressEdition) {