summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-12-13 19:21:28 (GMT)
committerBrad King <brad.king@kitware.com>2005-12-13 19:21:28 (GMT)
commit1c7075057fee4285fb7d4779832ad8704c509715 (patch)
tree6bd9b2c42329af3d29da83bcf32f4242421058b0 /Source/cmGlobalVisualStudio8Generator.h
parenta8d199df494e2c5c4404bb51844fb4c9ad31ec52 (diff)
downloadCMake-1c7075057fee4285fb7d4779832ad8704c509715.zip
CMake-1c7075057fee4285fb7d4779832ad8704c509715.tar.gz
CMake-1c7075057fee4285fb7d4779832ad8704c509715.tar.bz2
ENH: Added support for parallel builds in VS 8. There is now a special target on which all other targets depend that re-runs CMake if any listfiles have been changed. This addresses bug#2512.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h
index 07a359a..85ff7dd 100644
--- a/Source/cmGlobalVisualStudio8Generator.h
+++ b/Source/cmGlobalVisualStudio8Generator.h
@@ -42,7 +42,15 @@ public:
///! Create a local generator appropriate to this Global Generator
virtual cmLocalGenerator *CreateLocalGenerator();
+ /**
+ * Override Configure and Generate to add the build-system check
+ * target.
+ */
+ virtual void Configure();
+ virtual void Generate();
protected:
+ virtual void WriteSLNFile(std::ostream& fout, cmLocalGenerator* root,
+ std::vector<cmLocalGenerator*>& generators);
virtual void WriteSLNHeader(std::ostream& fout);
};
#endif