summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudioGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-04-10 17:09:03 (GMT)
committerBrad King <brad.king@kitware.com>2007-04-10 17:09:03 (GMT)
commit996f3915938f7c46081f42b5ae1407abd4aede02 (patch)
treeef2111622a4e941e7f0bd7bb6971d7060ff98e9d /Source/cmGlobalVisualStudioGenerator.h
parenta017333d9a7c58e573a4a0ba98fed62909832445 (diff)
downloadCMake-996f3915938f7c46081f42b5ae1407abd4aede02.zip
CMake-996f3915938f7c46081f42b5ae1407abd4aede02.tar.gz
CMake-996f3915938f7c46081f42b5ae1407abd4aede02.tar.bz2
BUG: The ALL_BUILD target should not have any command lines so that it is not always considered out of date. Moved the 'Build all projects' message into the description field instead of an echo in the command field. Moved common implementation of Generate for VS6 and VS7 into the superclass to avoid duplicate code for the ALL_BUILD target. This addresses bug#4556.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r--Source/cmGlobalVisualStudioGenerator.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h
index 5e08443..92acb69 100644
--- a/Source/cmGlobalVisualStudioGenerator.h
+++ b/Source/cmGlobalVisualStudioGenerator.h
@@ -31,6 +31,11 @@ public:
cmGlobalVisualStudioGenerator();
virtual ~cmGlobalVisualStudioGenerator();
+ /**
+ * Basic generate implementation for all VS generators.
+ */
+ virtual void Generate();
+
protected:
virtual void CreateGUID(const char*) {}
virtual void FixUtilityDepends();