Merge topic 'fix-vs11-sln-header'

f0d66ab VS11: Fix comment generated at the top of *.sln files
This commit is contained in:
David Cole 2011-10-25 15:34:03 -04:00 committed by CMake Topic Stage
commit 88b5578920
1 changed files with 1 additions and 1 deletions

View File

@ -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";
}
//----------------------------------------------------------------------------