I have a library that has both debug build and release build, how do I let Xcode link to the corresponding library base on the current configuration (debug/release)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I have the same problem except with frameworks instead of static libraries. Having different framework search paths for different configuration and doing -framework YourFramework.framework for both configurations should work but seems not so clean. (or same approach with static libraries)