I have a Xcode target with two configurations Debug/Release. Pretty usual setup so far.
I'm looking for a way to make Debug link to libmylib_debug.a and Release link with libmylib_release.a. How to do that in the Introjucer? I can only see "External libraries to link" at top (target) level, but not at config level. What is the advised way to do it?
You could put the debug/release versions in different folders and have different paths for each config. Or just use a -l directive in the config's extra link flags setting.