Xcode: project settings vs. target settings

前端 未结 3 1745
庸人自扰
庸人自扰 2021-02-03 20:21

I\'m creating a static lib on Mac OS X for one of our customers, as well as a small cmd line app to test the static lib. The cmd line project has 2 extra library search paths, w

3条回答
  •  猫巷女王i
    2021-02-03 21:04

    A project can contain multiple targets. For example, an app I write has four - the app itself, a Quick Look plugin, a framework and a bundle that contains Mac OS 10.6-specific functionality that can be dynamically loaded in.

    Project settings apply to every single target in the project. Each target can then override individual settings if they need to - for instance, my project's Target SDK is set to 10.5, but the 10.6-specific bundle has it's Target SDK set to 10.6.

    In some instances, some settings don't make sense to be in Project Settings - one of these, I guess, is search paths.

提交回复
热议问题