diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-04 19:50:26 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-04 19:50:26 (GMT) |
commit | 089aa3e10628aff58992a62b12fa1f1ce6e643b8 (patch) | |
tree | 895ff9462602cff9e0dce5d999301644fe6f9e1c /Source/cmMakefile.h | |
parent | 2383d6ff6d55d608688a3b21fc2710e72d375392 (diff) | |
download | CMake-089aa3e10628aff58992a62b12fa1f1ce6e643b8.zip CMake-089aa3e10628aff58992a62b12fa1f1ce6e643b8.tar.gz CMake-089aa3e10628aff58992a62b12fa1f1ce6e643b8.tar.bz2 |
option to make utilities in the all target
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 |