GeRyCh
GeRyCh

Reputation: 1628

Compile code only

How can I execute only code? I have a huge bundle (about 1000 images) and it takes a lot of time to copy all the photos with every build and run. Is there any way "deselect"? Regards.

Upvotes: 1

Views: 88

Answers (2)

Caleb
Caleb

Reputation: 124997

You can have multiple targets for the same app. Duplicate your current target, select most of your images in the project navigator, and then uncheck the new target in the Target Membership pane in the file inspector. Now, you can build the new target and test your app with only a few of your images.

Upvotes: 1

justin
justin

Reputation: 104698

create a separate target for your compilation phase -- for example, a static library

Upvotes: 0

Related Questions