diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-08 15:58:36 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-08 15:58:36 (GMT) |
commit | 347c5f4b46396e974ff164b44f23b37eef779138 (patch) | |
tree | e6457f6b3ce5ec7e54f3991e4e7912d2531f98b3 /Source/cmMakefile.h | |
parent | 6fe45fe9c3348645a0fe145e1f32c487829cea64 (diff) | |
download | CMake-347c5f4b46396e974ff164b44f23b37eef779138.zip CMake-347c5f4b46396e974ff164b44f23b37eef779138.tar.gz CMake-347c5f4b46396e974ff164b44f23b37eef779138.tar.bz2 |
ENH: add working directory support
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 3f289c1..f6418ba 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -138,12 +138,12 @@ public: const std::vector<std::string>& depends, const cmCustomCommandLines& commandLines, cmTarget::CustomCommandType type, - const char* comment); + const char* comment, const char* workingDir); void AddCustomCommandToOutput(const char* output, const std::vector<std::string>& depends, const char* main_dependency, const cmCustomCommandLines& commandLines, - const char* comment, + const char* comment, const char* workingDir, bool replace = false); void AddCustomCommandOldStyle(const char* target, const std::vector<std::string>& outputs, @@ -171,6 +171,7 @@ public: void AddUtilityCommand(const char* utilityName, bool all, const char* output, const std::vector<std::string>& depends, + const char* workingDirectory, const char* command, const char* arg1=0, const char* arg2=0, @@ -178,6 +179,7 @@ public: const char* arg4=0); void AddUtilityCommand(const char* utilityName, bool all, const char* output, + const char* workingDirectory, const std::vector<std::string>& depends, const cmCustomCommandLines& commandLines); |