diff options
author | Brad King <brad.king@kitware.com> | 2019-01-09 16:51:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-10 12:52:51 (GMT) |
commit | 163cc8bbdd20fceaa6958a071e3d15f53b224864 (patch) | |
tree | 2c925c3df0b20c073d0c529fd31477c572bd7f1f /Source/cmGlobalVisualStudio12Generator.cxx | |
parent | 6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79 (diff) | |
download | CMake-163cc8bbdd20fceaa6958a071e3d15f53b224864.zip CMake-163cc8bbdd20fceaa6958a071e3d15f53b224864.tar.gz CMake-163cc8bbdd20fceaa6958a071e3d15f53b224864.tar.bz2 |
VS: Convert WriteSLNHeader to non-virtual lookup table
Diffstat (limited to 'Source/cmGlobalVisualStudio12Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio12Generator.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmGlobalVisualStudio12Generator.cxx b/Source/cmGlobalVisualStudio12Generator.cxx index 3be7d24..2cec48c 100644 --- a/Source/cmGlobalVisualStudio12Generator.cxx +++ b/Source/cmGlobalVisualStudio12Generator.cxx @@ -186,16 +186,6 @@ bool cmGlobalVisualStudio12Generator::SelectWindowsStoreToolset( toolset); } -void cmGlobalVisualStudio12Generator::WriteSLNHeader(std::ostream& fout) -{ - fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n"; - if (this->ExpressEdition) { - fout << "# Visual Studio Express 2013 for Windows Desktop\n"; - } else { - fout << "# Visual Studio 2013\n"; - } -} - bool cmGlobalVisualStudio12Generator::IsWindowsDesktopToolsetInstalled() const { const char desktop81Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\" |