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/cmCPluginAPI.cxx | |
parent | 6fe45fe9c3348645a0fe145e1f32c487829cea64 (diff) | |
download | CMake-347c5f4b46396e974ff164b44f23b37eef779138.zip CMake-347c5f4b46396e974ff164b44f23b37eef779138.tar.gz CMake-347c5f4b46396e974ff164b44f23b37eef779138.tar.bz2 |
ENH: add working directory support
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index ba37864..63b379a 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -240,7 +240,7 @@ void CCONV cmAddUtilityCommand(void *arg, const char* utilityName, // Pass the call to the makefile instance. mf->AddUtilityCommand(utilityName, (all ? true : false), - output, depends2, commandLines); + output, 0, depends2, commandLines); } void CCONV cmAddCustomCommand(void *arg, const char* source, const char* command, @@ -319,8 +319,9 @@ void CCONV cmAddCustomCommandToOutput(void *arg, const char* output, // Pass the call to the makefile instance. const char* no_comment = 0; + const char* no_working_dir = 0; mf->AddCustomCommandToOutput(output, depends2, main_dependency, - commandLines, no_comment); + commandLines, no_comment, no_working_dir); } void CCONV cmAddCustomCommandToTarget(void *arg, const char* target, @@ -362,8 +363,9 @@ void CCONV cmAddCustomCommandToTarget(void *arg, const char* target, // Pass the call to the makefile instance. std::vector<std::string> no_depends; const char* no_comment = 0; + const char* no_working_dir = 0; mf->AddCustomCommandToTarget(target, no_depends, commandLines, - cctype, no_comment); + cctype, no_comment, no_working_dir); } void CCONV cmAddLinkLibraryForTarget(void *arg, const char *tgt, const char*value, |