diff options
author | David Cole <david.cole@kitware.com> | 2011-10-25 19:34:03 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-10-25 19:34:03 (GMT) |
commit | 88b557892096d587bc2f18ff470bff3fcf673359 (patch) | |
tree | 75875baf5e223ed9af020d0d8dcd7c615d9ff8bd | |
parent | e1902dd14576534fecd875ac6be6f39775c83dbd (diff) | |
parent | f0d66ab40aee3af3d201201e7b1275783ffbab36 (diff) | |
download | CMake-88b557892096d587bc2f18ff470bff3fcf673359.zip CMake-88b557892096d587bc2f18ff470bff3fcf673359.tar.gz CMake-88b557892096d587bc2f18ff470bff3fcf673359.tar.bz2 |
Merge topic 'fix-vs11-sln-header'
f0d66ab VS11: Fix comment generated at the top of *.sln files
-rw-r--r-- | Source/cmGlobalVisualStudio11Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio11Generator.cxx b/Source/cmGlobalVisualStudio11Generator.cxx index a70427a..97308bb 100644 --- a/Source/cmGlobalVisualStudio11Generator.cxx +++ b/Source/cmGlobalVisualStudio11Generator.cxx @@ -32,7 +32,7 @@ void cmGlobalVisualStudio11Generator::AddPlatformDefinitions(cmMakefile* mf) void cmGlobalVisualStudio11Generator::WriteSLNHeader(std::ostream& fout) { fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n"; - fout << "# Visual Studio 2011\n"; + fout << "# Visual Studio 11\n"; } //---------------------------------------------------------------------------- |