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/cmLocalVisualStudio7Generator.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/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index b1ebe43..9469c5f 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -64,6 +64,7 @@ public: { return m_CreatedProjectNames; } + void SetVersion71() {m_Version71 = true;} private: void OutputVCProjFile(); @@ -121,32 +122,7 @@ private: std::string m_LibraryOutputPath; std::string m_ExecutableOutputPath; std::string m_ModuleDefinitionFile; - - /* - std::string m_DSPHeaderTemplate; - std::string m_DSPFooterTemplate; - void WriteDSPBeginGroup(std::ostream& fout, - const char* group, - const char* filter); - void WriteDSPEndGroup(std::ostream& fout); - - - void WriteCustomRule(std::ostream& fout, - const char* source, - const char* command, - const std::set<std::string>& depends, - const std::set<std::string>& outputs, - const char* flags); - - std::string CreateTargetRules(const cmTarget &target, - const char *libName); - std::string CombineCommands(const cmSourceGroup::Commands &commands, - cmSourceGroup::CommandFiles &totalCommand, - const char *source); - - std::string m_IncludeOptions; - std::vector<std::string> m_Configurations; - */ + bool m_Version71; }; #endif |