views:

477

answers:

2

Hi.

I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode project.

Now, I want to have the Lite target copy only a subset of the resource files to the bundle. But, xcode won't simply let me delete individual files from the "Copy Files to Bundle" build step, since I imported all my resources as folder references. I need this in order to maintain a directory structure in the resources directory.

How do I solve this problem? Any suggestions or ideas are greatly appreciated!

Flo

+2  A: 

Instead of manipulating the "Copy Bundle Resources" step of your target, you can right-click resource files or groups (folders), choose "Get Info," and selectively leave stuff out of your Lite build under the Targets tabs of the info window for the file(s) you selected. Doing this on a group (folder) recurses the changes, so using resource groups (folders) is a nice easy way to make separate resources collections for separate builds.

RickDT
+3  A: 

In the left-hand panel of XCode, right-click on the "Groups & Files" bar at the top. Check "Target Membership".

Now you'll see a tick against every file that should be included in your current build target. Untick the ones you don't want, switch to your other target, and repeat.

Kris Jenkins