diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-04 20:07:54 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-04 20:07:54 (GMT) |
commit | cc5c1fa6f739648d2dfc61355908752c5e073621 (patch) | |
tree | 086941624518402b3e67d4d4413af64ea6c42839 /Source/cmMakefile.h | |
parent | ecff0d36ac396c6fd905bd639a2f2a604d1aad43 (diff) | |
download | CMake-cc5c1fa6f739648d2dfc61355908752c5e073621.zip CMake-cc5c1fa6f739648d2dfc61355908752c5e073621.tar.gz CMake-cc5c1fa6f739648d2dfc61355908752c5e073621.tar.bz2 |
ENH: separate command from its arguments in the custom command. This allows the generator on windows to change the slashes for just the command
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 3b844fa..3b41a71 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -167,9 +167,11 @@ public: */ void AddUtilityCommand(const char* utilityName, const char* command, + const char* arguments, bool all); void AddUtilityCommand(const char* utilityName, const char* command, + const char* arguments, bool all, const std::vector<std::string> &depends, const std::vector<std::string> &outputs); |