summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPWriter.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-02-26 22:17:34 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-02-26 22:17:34 (GMT)
commitacbd160dd2731b2a77a8fd6fb444b52e8f0676a0 (patch)
treef93d16f4f3c5a946807374bf4b54e93d4b27f92e /Source/cmDSPWriter.h
parent32e738cd0c43d3738d988eee876a68cefc365769 (diff)
downloadCMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.zip
CMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.tar.gz
CMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.tar.bz2
a variety of fixes and enhancements
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r--Source/cmDSPWriter.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h
index 7c61316..d9bb46d 100644
--- a/Source/cmDSPWriter.h
+++ b/Source/cmDSPWriter.h
@@ -69,19 +69,22 @@ private:
const char* filter);
void WriteDSPEndGroup(std::ostream& fout);
void WriteDSPHeader(std::ostream& fout);
- void WriteDSPBuildRules(std::ostream& fout);
+ void WriteDSPBuildRules(std::ostream& fout, const char *extensions);
void WriteDSPBuildRule(std::ostream& fout, const char*);
void WriteDSPFooter(std::ostream& fout);
void WriteDSPBuildRule(std::ostream& fout);
void WriteCustomRule(std::ostream& fout,
const char* source,
const char* result,
- const char* command);
+ const char* command,
+ std::vector<std::string>& depends);
std::string m_IncludeOptions;
std::string m_DebugLibraryOptions;
std::string m_ReleaseLibraryOptions;
cmMakefile* m_Makefile;
+
+ std::vector<std::string> m_Configurations;
};
#endif