xcode-workspace

How to compile a project with app and library in the same workspace with different configuration names?

允我心安 提交于 2019-11-28 03:42:55
I am developing an app and I am using an open source component. I have a workspace containing both MyApp.xcodeproj and Component.xcodeproj . My app has three configurations: Debug , App Store and In House but the component has only two: Debug and Release In the Debug configuration, everything works fine, but I can't compile my app in App Store or In House configuration because the configuration names do not match. I get a file not found error when trying to #import <Component/Component.h> I need both App Store and In House configurations and I would really like to avoid modifying the component