diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-08-02 17:01:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-08-02 17:01:35 (GMT) |
commit | d9371295fe721f5e0480b81fb4ec26c997b69037 (patch) | |
tree | 00afaa60602d8a5164999ec342aab808f4136195 /Source | |
parent | 29231c8e6de580b204037d113210f1dcefe41f99 (diff) | |
download | CMake-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.cxx | 1 |
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; } |