Reputation: 16502
In Xcode 4 I was able to add a user-defined build setting (EXCLUDED_SOURCE_FILE_NAMES) in order to exclude source files for my release builds.
How do you do this in Xcode 5?
Upvotes: 0
Views: 2203
Reputation: 20088
Go to the build settings editor (Click the Build Settings button at the top of the project editor). Choose Editor > Add Build Setting > Add User-Defined Build Setting. The build settings need to be visible in the project editor or else the menu items to add a user-defined build setting will be disabled.
Upvotes: 2