summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-11-22 18:37:42 (GMT)
committerBrad King <brad.king@kitware.com>2005-11-22 18:37:42 (GMT)
commitd952f68738c33c7cbc5a815d28383e07be806e30 (patch)
tree1bb5bf1416a89745dbb343f408344ae546c9b852 /Source/cmGlobalVisualStudio8Generator.cxx
parentabebb974aa1983b4cbdd5a2d886908d735530694 (diff)
downloadCMake-d952f68738c33c7cbc5a815d28383e07be806e30.zip
CMake-d952f68738c33c7cbc5a815d28383e07be806e30.tar.gz
CMake-d952f68738c33c7cbc5a815d28383e07be806e30.tar.bz2
BUG: Tweak VS8 generator to keep VS8 happy. The .vcproj files need their own GUIDs in a ProjectGUID attribute. The top level .sln file needs a special comment at the top to allow it to be opened with double-click in explorer.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index 4f20eb0..eb87b1c 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -43,6 +43,7 @@ cmLocalGenerator *cmGlobalVisualStudio8Generator::CreateLocalGenerator()
void cmGlobalVisualStudio8Generator::WriteSLNHeader(std::ostream& fout)
{
fout << "Microsoft Visual Studio Solution File, Format Version 9.00\n";
+ fout << "# Visual Studio 2005\n";
}
//----------------------------------------------------------------------------