tags:

views:

61

answers:

3

Lets say I have a bunch of PSD's and other large files that arent being used in my xCode project... Do those get added to the app when I compile? Do I need to store those somewhere else?

+3  A: 

I think you can remove them from your target's "Copy Bundle Resources" if you don't want them in your .app file.

Jonas
I think he /wants/ them to be included in his project.
strager
I thought he wanted them in his project but not in his app bundle.
Jonas
+2  A: 

By default, they will be included. If you don't want that, then do the following:

  1. In the Xcode project window, select all the resources you don't want included.
  2. Hit the big blue i button on the toolbar.
  3. Go to the Targets tab.
  4. Uncheck your app's target.

Incidentally, this also works if you have a code file you don't want compiled in.

Brent Royal-Gordon
The comment about code is true, and quite handy for Full/Lite versions of an app, just have 2 targets.
Jonas
A: 

If you want to make sure, go to your build directory and open the .app package and see if the files are in there. Right-click on it in the Finder and choose "Show Package Contents"

Lou Franco