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/cmQTWrapUICommand.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/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index ef57c01..cb15cfd 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -179,11 +179,13 @@ void cmQTWrapUICommand::FinalPass() depends.push_back(m_WrapUserInterface[classNum]); const char* no_main_dependency = 0; const char* no_comment = 0; + const char* no_working_dir = 0; m_Makefile->AddCustomCommandToOutput(hres.c_str(), depends, no_main_dependency, hCommandLines, - no_comment); + no_comment, + no_working_dir); depends.push_back(hres); @@ -191,7 +193,8 @@ void cmQTWrapUICommand::FinalPass() depends, no_main_dependency, cxxCommandLines, - no_comment); + no_comment, + no_working_dir); depends.clear(); depends.push_back(hres); @@ -200,6 +203,7 @@ void cmQTWrapUICommand::FinalPass() depends, no_main_dependency, mocCommandLines, - no_comment); + no_comment, + no_working_dir); } } |