On Jun 6, 2005, at 8:27 PM, Tim Conkling wrote:
I want to have my binaries built in a project-relative directory I have created (../Applications). With Xcode 2.0 this worked fine, but with 2.1 my binaries are being built in "../Applications/Debug" (Debug being the name of my build configuration).
How do I prevent this? I went through all the build settings and couldn't find anything that seemed relevant.
This is new default behavior in Xcode 2.1 and is pretty important in keeping Debug (NATIVE_ARCH) binaries separate from Release (Universal) binaries. Because each architecture is an entire compile pass, blowing away your release version by switching to the debug target has more serious consequences than before.
If you cannot reconfigure your workflow to accomodate this, then you can
defaults write com.apple.Xcode UsePerConfigurationBuildLocations YES