summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudioGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-06-03 10:03:37 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-06-03 10:03:43 (GMT)
commit05e0ff3c735878e41937d020ab186a5e98dbb4ae (patch)
treec3a610d70c5a899d8a4a5beb66fa4c2bae5662b7 /Source/cmGlobalVisualStudioGenerator.cxx
parent1936955b66f4b839eaeef1f8065ddb4acc496c46 (diff)
parentb69010b719f063a694206154b75f99eb83e17ddf (diff)
downloadCMake-05e0ff3c735878e41937d020ab186a5e98dbb4ae.zip
CMake-05e0ff3c735878e41937d020ab186a5e98dbb4ae.tar.gz
CMake-05e0ff3c735878e41937d020ab186a5e98dbb4ae.tar.bz2
Merge topic 'vs-sln-version-16'
b69010b719 VS: Fix .sln support for VS Version Selector with VS 2019 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4844
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r--Source/cmGlobalVisualStudioGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx
index 0932d06..c688da2 100644
--- a/Source/cmGlobalVisualStudioGenerator.cxx
+++ b/Source/cmGlobalVisualStudioGenerator.cxx
@@ -167,7 +167,7 @@ void cmGlobalVisualStudioGenerator::WriteSLNHeader(std::ostream& fout)
if (this->ExpressEdition) {
fout << "# Visual Studio Express 16 for Windows Desktop\n";
} else {
- fout << "# Visual Studio 16\n";
+ fout << "# Visual Studio Version 16\n";
}
break;
}