diff options
author | Brad King <brad.king@kitware.com> | 2020-06-02 14:30:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-02 14:30:33 (GMT) |
commit | b69010b719f063a694206154b75f99eb83e17ddf (patch) | |
tree | 56de4004d28da2ecc42b5e1423eb4aebba7208a8 /Source/cmGlobalVisualStudioGenerator.cxx | |
parent | e647949539f4704a00eddac2357d59ceeb8bc0ca (diff) | |
download | CMake-b69010b719f063a694206154b75f99eb83e17ddf.zip CMake-b69010b719f063a694206154b75f99eb83e17ddf.tar.gz CMake-b69010b719f063a694206154b75f99eb83e17ddf.tar.bz2 |
VS: Fix .sln support for VS Version Selector with VS 2019
VS 2019 changed the naming pattern used by 2015 and 2017.
Fixes: #20783
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.cxx | 2 |
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; } |