ENH: remove output path stuff
This commit is contained in:
parent
f30e760848
commit
7b9f3389c3
|
@ -240,10 +240,9 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
|
||||||
cmCustomCommandLine makecommand;
|
cmCustomCommandLine makecommand;
|
||||||
makecommand.push_back("make");
|
makecommand.push_back("make");
|
||||||
makecommand.push_back("-C");
|
makecommand.push_back("-C");
|
||||||
makecommand.push_back(this->ConvertToRelativeOutputPath(dir.c_str()));
|
makecommand.push_back(dir.c_str());
|
||||||
makecommand.push_back("-f");
|
makecommand.push_back("-f");
|
||||||
makecommand.push_back(this->ConvertToRelativeOutputPath(
|
makecommand.push_back(m_CurrentXCodeHackMakefile.c_str());
|
||||||
m_CurrentXCodeHackMakefile.c_str()));
|
|
||||||
cmCustomCommandLines commandLines;
|
cmCustomCommandLines commandLines;
|
||||||
commandLines.push_back(makecommand);
|
commandLines.push_back(makecommand);
|
||||||
mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends,
|
mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends,
|
||||||
|
|
Loading…
Reference in New Issue