diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-01 20:55:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-01 20:55:32 (GMT) |
commit | 96ec40943cc1f96d8789fff62c6416a91c01f066 (patch) | |
tree | 1a5dc61afab89b36a15d9fd886c771104e029783 /Source/cmDSPWriter.h | |
parent | 13d4fd06f09ad1beaab01d714c246dbee2568373 (diff) | |
download | CMake-96ec40943cc1f96d8789fff62c6416a91c01f066.zip CMake-96ec40943cc1f96d8789fff62c6416a91c01f066.tar.gz CMake-96ec40943cc1f96d8789fff62c6416a91c01f066.tar.bz2 |
ENH: implement ADD_TARGET command, and add an ALL_BUILD target
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index 20f91a5..109feb1 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.h @@ -57,7 +57,7 @@ public: cmDSPMakefile(cmMakefile*); ~cmDSPMakefile(); void OutputDSPFile(); - enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE}; + enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE, UTILITY}; /** * Specify the type of the build: static, dll, or executable. @@ -107,6 +107,7 @@ private: void WriteDSPFooter(std::ostream& fout); void AddDSPBuildRule(cmSourceGroup&); void WriteCustomRule(std::ostream& fout, + const char* source, const char* command, const std::set<std::string>& depends, const std::set<std::string>& outputs); |