Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When and how to use Aggregate Target in xcode 4

I was trying to look for an example of using an Aggregate Target in Xcode4, including its purpose and why a developer should use it.

Do you have any reference link, especially from Apple Developer web site?

like image 845
Leonardo Avatar asked Jul 19 '11 12:07

Leonardo


2 Answers

Aggregate Target

Xcode defines a special type of target that lets you build a group of targets at once, even if those targets do not depend on each other. An aggregate target has no associated product and no build rules. Instead, an aggregate target depends on each of the targets you want to build together. For example, you may have a group of products that you want to build together. You would create an aggregate target and make it depend on each of the product targets. To build all the products, just build the aggregate target.

An aggregate target may contain a custom Run Script build phase or a Copy Files build phase, but it cannot contain any other build phases. Any build settings that the aggregate target contains are not interpreted but are passed to the build phases that the target contains.

Source

like image 199
chunkyguy Avatar answered Oct 04 '22 01:10

chunkyguy


One reason I use an aggregate target is to package up my application into a .dmg or .zip for distribution. I set the application's target as a dependency, then run a script phase. You could also build and run other tools that either modify the app or help with the packaging, etc.

like image 23
Richard Avatar answered Oct 04 '22 02:10

Richard