I have a project in Xcode 5 that uses various boost libraries. I have built both debug and release versions of boost and put the binaries in the same location.
I would like to build my application for debug and release in such a way that when I build a debug version it links to the debug boost libraries and when I build a release version it links to the release boost libraries.
In Xcode, under Build Phases, I don't see how to specify a set of binaries in 'Link binary With Libraries' for debug and another set for release.
How do I do this?