ENH: get around problem where OBJROOT has been set by default for all projects in Xcode gui

This commit is contained in:
Andy Cedilnik 2005-08-02 13:01:35 -04:00
parent 29231c8e6d
commit d9371295fe
1 changed files with 1 additions and 0 deletions

View File

@ -176,6 +176,7 @@ std::string cmGlobalXCodeGenerator::GenerateBuildCommand(const char* makeProgram
{ {
makeCommand += " -configuration Debug"; makeCommand += " -configuration Debug";
} }
makeCommand += " OBJROOT=.";
return makeCommand; return makeCommand;
} }