Xcode 4: Project does not honor $(inherited) Build Setting in Workspace?

后端 未结 1 1232
一向
一向 2021-01-24 00:51

Today is my day to suffer through Xcode 4, Workspaces, and Projects.

I have a workspace with a few open source libraries (openssl, sqlcipher, and a couple of others). Wi

相关标签:
1条回答
  • 2021-01-24 01:30

    These settings don't cross project boundaries. I recommend you configure your targets using .xcconfig files instead (these may be referenced by multiple projects).


    Update/Explanation: Using your example setup: The build settings for Main Project may affect any of Main Project's targets, but they won't cross over to OpenSSL Project's targets.

    0 讨论(0)
提交回复
热议问题