Adding a build dependency in iOS
How is a build dependency added to an iphone application?
If a .xcodeproj is added to an application, how is it added as a build de开发者_开发问答pendency?
- right-click ( or ctrl-click ) on the appropriate target ( under Targets )
- go to the General tab
- Click on the plus button under "Direct Dependencies"
- Select your desired target to make a dependency, and hit add target
Ctrl+click on the app's target, click Properties and go to the first tab. Then, add a dependency and select the xcodeproj's target which you'd like as dependency.
精彩评论