diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-03-13 19:18:27 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-03-13 19:18:27 (GMT) |
commit | c53b26baf26bdb465fbbe003b9e184b66ee22d7a (patch) | |
tree | 0146deb8afa5277002a511f1a519477d1f2035e7 /Source/cmMakefile.h | |
parent | 5891ba16ce5cec9ed81468da4d07f1513de756ee (diff) | |
download | CMake-c53b26baf26bdb465fbbe003b9e184b66ee22d7a.zip CMake-c53b26baf26bdb465fbbe003b9e184b66ee22d7a.tar.gz CMake-c53b26baf26bdb465fbbe003b9e184b66ee22d7a.tar.bz2 |
ENH: some more cleanup
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 606ddee..5d18ead 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -176,7 +176,7 @@ public: * Add a utility to the build. A utiltity target is a command that * is run every time the target is built. */ - void AddUtilityCommand(const char* utilityName, bool all, + void AddUtilityCommand(const char* utilityName, bool excludeFromAll, const std::vector<std::string>& depends, const char* workingDirectory, const char* command, @@ -184,7 +184,7 @@ public: const char* arg2=0, const char* arg3=0, const char* arg4=0); - void AddUtilityCommand(const char* utilityName, bool all, + void AddUtilityCommand(const char* utilityName, bool excludeFromAll, const char* workingDirectory, const std::vector<std::string>& depends, const cmCustomCommandLines& commandLines, |