diff options
author | Brad King <brad.king@kitware.com> | 2005-12-13 19:21:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-12-13 19:21:28 (GMT) |
commit | 1c7075057fee4285fb7d4779832ad8704c509715 (patch) | |
tree | 6bd9b2c42329af3d29da83bcf32f4242421058b0 /Source/cmGlobalVisualStudio8Generator.h | |
parent | a8d199df494e2c5c4404bb51844fb4c9ad31ec52 (diff) | |
download | CMake-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.h | 8 |
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 |