diff options
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index ff60091..4823d36 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -140,7 +140,13 @@ public: * a command that is run every time a target is built. */ void AddUtilityCommand(const char* utilityName, - const char* command); + const char* command, + bool all); + void AddUtilityCommand(const char* utilityName, + const char* command, + bool all, + const std::vector<std::string> &depends, + const std::vector<std::string> &outputs); /** * Add a utility on which this project depends. A utility is an executable |