diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-11-09 18:00:53 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-11-09 18:00:53 (GMT) |
commit | 722283804b7d3b04e90daac84465c53130748ee0 (patch) | |
tree | fa0d56a7132e4593309b1186a4b89f44291333e0 /Source/cmDSPWriter.h | |
parent | 123f9b50eaf9b31b56144454658b0f629dda2cbb (diff) | |
download | CMake-722283804b7d3b04e90daac84465c53130748ee0.zip CMake-722283804b7d3b04e90daac84465c53130748ee0.tar.gz CMake-722283804b7d3b04e90daac84465c53130748ee0.tar.bz2 |
support for custom targets on exe and lib
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index 0182e1a..fc951a0 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.h @@ -95,7 +95,7 @@ private: void WriteDSPEndGroup(std::ostream& fout); void WriteDSPHeader(std::ostream& fout, const char *libName, - const cmTarget &tgt); + const cmTarget &tgt, std::vector<cmSourceGroup> &sgs); void WriteDSPFooter(std::ostream& fout); void AddDSPBuildRule(cmSourceGroup&); @@ -105,6 +105,13 @@ private: const std::set<std::string>& depends, const std::set<std::string>& outputs); + 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; cmMakefile* m_Makefile; std::vector<std::string> m_Configurations; |