diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-06-05 20:45:06 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-06-05 20:45:06 (GMT) |
commit | 61a3e4fb808b2643689067a31aa7433d169ab870 (patch) | |
tree | c28c6f944475ac293dba6cb57ab928b4629c5526 /Source/cmMakefile.h | |
parent | f698e306a7cd44e01d63924846bcb01e6c3e1733 (diff) | |
download | CMake-61a3e4fb808b2643689067a31aa7433d169ab870.zip CMake-61a3e4fb808b2643689067a31aa7433d169ab870.tar.gz CMake-61a3e4fb808b2643689067a31aa7433d169ab870.tar.bz2 |
more custom command
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 93d02c8..f2965aa 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -133,6 +133,12 @@ public: const std::vector<std::string>& commandArgs, cmTarget::CustomCommandType type, const char *comment = 0); + void AddCustomCommandToTarget(const char* target, + const char* command, + const std::vector<std::string>& commandArgs, + cmTarget::CustomCommandType type, + const char *comment, + const std::vector<std::string>& depends); /** * Add a custom command to the build. |