I was wondering whether it is possible to have dependant static library compiled with different configuration settings.
My case was I have a project (project.pbxproj) which is dependant on a static library (cocoa touch) project (libStatic.pbxproj). My project has let say 3 configuration settings, like debug, release and ad-hoc, while my libStatic will only have 2 which is debug and release. So my question is, it is possible to have the ad-hoc configuration settings on the main project to cause the static library compiled under the release settings?
Currently I have errors on building(compiling) the project only for the ad-hoc settings, while everything runs perfectly with both the release and debug settings.
My reference on building the static library was http://blog.carbonfive.com/2011/04/04/using-open-source-static-libraries-in-xcode-4/
Thanks before
Cheers,