summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-06-03 10:03:37 +0000
committerKitware Robot <kwrobot@kitware.com>2020-06-03 06:03:43 -0400
commit05e0ff3c735878e41937d020ab186a5e98dbb4ae (patch)
treec3a610d70c5a899d8a4a5beb66fa4c2bae5662b7 /Source
parent1936955b66f4b839eaeef1f8065ddb4acc496c46 (diff)
parentb69010b719f063a694206154b75f99eb83e17ddf (diff)
downloadcmake-05e0ff3c735878e41937d020ab186a5e98dbb4ae.tar.gz
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')
-rw-r--r--Source/cmGlobalVisualStudioGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx
index 0932d060c1..c688da2a39 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;
}