parent
add30e9008
commit
afb3edc181
|
@ -69,8 +69,7 @@ void cmQtAutomoc::SetupAutomocTarget(cmTarget* target)
|
|||
std::string automocComment = "Automoc for target ";
|
||||
automocComment += targetName;
|
||||
|
||||
cmTarget* mocTarget = makefile->AddUtilityCommand(automocTargetName.c_str(),
|
||||
true,
|
||||
makefile->AddUtilityCommand(automocTargetName.c_str(), true,
|
||||
workingDirectory.c_str(), depends,
|
||||
commandLines, false, automocComment.c_str());
|
||||
target->AddUtility(automocTargetName.c_str());
|
||||
|
@ -713,9 +712,11 @@ bool cmQtAutomoc::GenerateMoc(const std::string& sourceFile,
|
|||
|
||||
if (this->Verbose)
|
||||
{
|
||||
for(int i=0; i<command.size(); i++)
|
||||
for(std::vector<cmStdString>::const_iterator cmdIt = command.begin();
|
||||
cmdIt != command.end();
|
||||
++cmdIt)
|
||||
{
|
||||
std::cout << command[i] << " ";
|
||||
std::cout << *cmdIt << " ";
|
||||
}
|
||||
std::cout << std::endl;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue