diff options
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; |