diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-11 18:59:02 (GMT) |
commit | 865ec96644ae08e66b9a4a15bd7cddde46d2e2b0 (patch) | |
tree | 3f1a58bd35606684aa8501c2e629f24855e37421 /Source/cmSourceGroup.h | |
parent | 7b47a5d2ef1bb303b25a051d588a54616e44cbe9 (diff) | |
download | CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.zip CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.gz CMake-865ec96644ae08e66b9a4a15bd7cddde46d2e2b0.tar.bz2 |
major changes to support multiple libraries and source lists
Diffstat (limited to 'Source/cmSourceGroup.h')
-rw-r--r-- | Source/cmSourceGroup.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h index bc8ec1c..4fa9e2d 100644 --- a/Source/cmSourceGroup.h +++ b/Source/cmSourceGroup.h @@ -18,6 +18,7 @@ #include "cmStandardIncludes.h" #include "cmRegularExpression.h" +#include "cmCustomCommand.h" #include <set> /** \class cmSourceGroup @@ -58,10 +59,7 @@ public: { m_GroupRegex.compile(regex); } void AddSource(const char* name) { m_Sources.push_back(name); } - void AddCustomCommand(const char* source, - const char* command, - const std::vector<std::string>& depends, - const std::vector<std::string>& outputs); + void AddCustomCommand(const cmCustomCommand &cmd); const char* GetName() const { return m_Name.c_str(); } const std::vector<std::string>& GetSources() const |