diff options
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); } } |