summaryrefslogtreecommitdiffstats
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)
commit73086daa576c2ffaed8fe0a00b3fbbcb085bec34 (patch)
tree12f261523def85b724863ebf5bbd7f2af171c61c
parent20ca1c018f63011b663ec43c1ee9b76070be435a (diff)
parentb69010b719f063a694206154b75f99eb83e17ddf (diff)
downloadCMake-73086daa576c2ffaed8fe0a00b3fbbcb085bec34.zip
CMake-73086daa576c2ffaed8fe0a00b3fbbcb085bec34.tar.gz
CMake-73086daa576c2ffaed8fe0a00b3fbbcb085bec34.tar.bz2
Merge topic 'vs-sln-version-16' into release-3.17
b69010b719 VS: Fix .sln support for VS Version Selector with VS 2019 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4844
-rw-r--r--Source/cmGlobalVisualStudioGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx
index 4b4d72a..29d3f1a 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;
}