summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio71Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-05-06 00:54:53 (GMT)
committerBrad King <brad.king@kitware.com>2006-05-06 00:54:53 (GMT)
commitbc135b7fc219187b5154e13f3606b64759f269fc (patch)
treed0b6d5c12313ce87f732836400f42ed3d7d595be /Source/cmGlobalVisualStudio71Generator.cxx
parentfad3e1dd77c430c90523bb10aafc848c26831d7c (diff)
downloadCMake-bc135b7fc219187b5154e13f3606b64759f269fc.zip
CMake-bc135b7fc219187b5154e13f3606b64759f269fc.tar.gz
CMake-bc135b7fc219187b5154e13f3606b64759f269fc.tar.bz2
BUG: MSVC* variables should be set in IDE generators instead of just NMake.
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio71Generator.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index d25785b..f37ecf2 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -39,7 +39,10 @@ cmLocalGenerator *cmGlobalVisualStudio71Generator::CreateLocalGenerator()
return lg;
}
-
+void cmGlobalVisualStudio71Generator::AddPlatformDefinitions(cmMakefile* mf)
+{
+ mf->AddDefinition("MSVC71", "1");
+}
// Write a SLN file to the stream
void cmGlobalVisualStudio71Generator::WriteSLNFile(std::ostream& fout,