diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-26 16:22:53 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-26 16:22:53 -0400 |
commit | 41e1270413b18272bc73a8b25150aad4c7913563 (patch) | |
tree | 97d507f6296c78e5aaf17e1858e610cf95c46ba7 /Source/cmDSPWriter.h | |
parent | 888e47ddb4215659e76673af4f18aba865ccc4b8 (diff) | |
download | cmake-41e1270413b18272bc73a8b25150aad4c7913563.tar.gz |
support for debug and opt libraries
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index d231d161fb..c35665397e 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.h @@ -67,16 +67,15 @@ private: std::string m_DSPFooterTemplate; std::vector<std::string> m_CreatedProjectNames; - void CreateSingleDSP(const char *lname, cmTarget &tgt, - const std::string &libs); + void CreateSingleDSP(const char *lname, cmTarget &tgt); void WriteDSPFile(std::ostream& fout, const char *libName, - cmTarget &tgt, const std::string &libs); + cmTarget &tgt); void WriteDSPBeginGroup(std::ostream& fout, const char* group, const char* filter); void WriteDSPEndGroup(std::ostream& fout); void WriteDSPHeader(std::ostream& fout, const char *libName, - const std::string &libs); + const cmTarget &tgt); void WriteDSPBuildRule(std::ostream& fout, const char*); void WriteDSPBuildRule(std::ostream& fout); void WriteDSPFooter(std::ostream& fout); |