summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-08-02 17:01:35 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-08-02 17:01:35 (GMT)
commitd9371295fe721f5e0480b81fb4ec26c997b69037 (patch)
tree00afaa60602d8a5164999ec342aab808f4136195 /Source
parent29231c8e6de580b204037d113210f1dcefe41f99 (diff)
downloadCMake-d9371295fe721f5e0480b81fb4ec26c997b69037.zip
CMake-d9371295fe721f5e0480b81fb4ec26c997b69037.tar.gz
CMake-d9371295fe721f5e0480b81fb4ec26c997b69037.tar.bz2
ENH: get around problem where OBJROOT has been set by default for all projects in Xcode gui
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 066c3e2..2a65433 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -176,6 +176,7 @@ std::string cmGlobalXCodeGenerator::GenerateBuildCommand(const char* makeProgram
{
makeCommand += " -configuration Debug";
}
+ makeCommand += " OBJROOT=.";
return makeCommand;
}