summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2011-10-25 19:34:03 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-10-25 19:34:03 (GMT)
commit88b557892096d587bc2f18ff470bff3fcf673359 (patch)
tree75875baf5e223ed9af020d0d8dcd7c615d9ff8bd
parente1902dd14576534fecd875ac6be6f39775c83dbd (diff)
parentf0d66ab40aee3af3d201201e7b1275783ffbab36 (diff)
downloadCMake-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.cxx2
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";
}
//----------------------------------------------------------------------------