diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-08 20:59:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-08 20:59:27 (GMT) |
commit | 6112e7fc160e611e2b7e299dec5b67dacc3e4c49 (patch) | |
tree | f752adadaab48dcffde487533848ff0e47f2fd6b /Source/cmGlobalVisualStudio7Generator.h | |
parent | 93f806e5636f7131ddbea40b1567385efc849d73 (diff) | |
download | CMake-6112e7fc160e611e2b7e299dec5b67dacc3e4c49.zip CMake-6112e7fc160e611e2b7e299dec5b67dacc3e4c49.tar.gz CMake-6112e7fc160e611e2b7e299dec5b67dacc3e4c49.tar.bz2 |
add support for vs 71
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 2fa8ca6..c703bea 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -76,22 +76,24 @@ public: */ std::vector<std::string> *GetConfigurations(); -private: - void SetupTests(); - void GenerateConfigurations(cmMakefile* mf); - void WriteSLNFile(std::ostream& fout); - void WriteSLNHeader(std::ostream& fout); - void WriteProject(std::ostream& fout, - const char* name, const char* path, - const cmTarget &t); - void WriteProjectDepends(std::ostream& fout, +protected: + virtual void WriteSLNFile(std::ostream& fout); + virtual void WriteProject(std::ostream& fout, + const char* name, const char* path, + const cmTarget &t); + virtual void WriteProjectDepends(std::ostream& fout, const char* name, const char* path, const cmTarget &t); - void WriteProjectConfigurations(std::ostream& fout, const char* name, bool in_all); + virtual void WriteProjectConfigurations(std::ostream& fout, const char* name, bool in_all); + virtual void WriteSLNFooter(std::ostream& fout); + virtual void WriteSLNHeader(std::ostream& fout); + + void SetupTests(); + void GenerateConfigurations(cmMakefile* mf); + void WriteExternalProject(std::ostream& fout, const char* name, const char* path, const std::vector<std::string>& dependencies); - void WriteSLNFooter(std::ostream& fout); std::string CreateGUID(const char* name); std::vector<std::string> m_Configurations; |