On my system, compiling an OSX project, that resolves to an absolute path:
BUILT_PRODUCTS_DIR /Users/andy/Source/MyProject/build/Debug
There are so many Xcode build variables that I keep a text file with a sample list of them which I got from executing a custom build script and viewing the output within the log tab.
If your code is going into the Library
folder, then that is hidden under Lion. You can unhide it from the command line (Terminal
) using:
$ cd ~
$ chflags nohidden Library
You should then be able to see its content.
Another tip: I have a ~/tmp
folder where I let temporary stuff accumulate and I have set my Xcode preferences to put DerivedData
and Archives
into that folder so I can:
- delete it now and again (I don't like temporary stuff accumulating where I cannot control it).
- see it for packaging pre-release Archived project to testers.