vote up 6 vote down star
6

Is it possible to set a symbol for conditional compilation by setting up properties in an Xcode project?

My aim is to to create a symbol that is available to all files, without having to use import/include, so that a set of common classes can have a special behavior in some projects. Like the following, but with my own symbols.

#if TARGET_IPHONE_SIMULATOR
    ...
#endif
flag

72% accept rate

3 Answers

vote up 20 vote down check

Go to your Target or Project settings, click the Gear icon at the bottom left, and select "Add User-Defined Setting". The new setting name should be GCC_PREPROCESSOR_DEFINITIONS, and you can type your definitions in the right-hand field.

Per Steph's comments, the full syntax is:

 constant_1=VALUE constant_2=VALUE

Note that you don't need the '='s if you just want to #define a symbol, rather than giving it a value (for #ifdef statements)

link|flag
Either use backslashes in front of underscores to prevent them converting the text to italic or use back-quotes to enclose programming material - which is what I did. – Jonathan Leffler Dec 15 '08 at 5:41
Thanks Jonathan, will do! – Ben Gottlieb Dec 15 '08 at 13:34
Thanks! To whoever interested, the syntax looks like "kVarOne=5 myVar=3.0" (without the quotes), I found it by trial and error. Ben could you edit your answer to specify that? Thanks again. – Steph Thirion Dec 20 '08 at 2:56
1  
Amazing answer. I still have hair because of this. Thank you thank you thank you. +1 (I wish it could be more) – Ali Parr Mar 25 at 22:08
vote up 5 vote down

You don't need to create a user-defined setting. The built-in setting "Preprocessor Macros" works just fine. alt text

If you have multiple targets or projects that use the same prefix file, use Preprocessor Macros Not Used In Precompiled Headers instead, so differences in your macro definition don't trigger an unnecessary extra set of precompiled headers.

link|flag
What do you do if this section is missing from the build settings? – Kevin Laity Oct 8 at 21:39
vote up 0 vote down

It's under "GCC 4.2 Preprocessing" (or just put "prepro" in the search box)...

...however, for the life of me I can't get it to work.

I have my standard Debug and Release configurations, and I want to define DEBUG=1 in the debugging configuration. But after adding it as a value:

(in the settings window) > Preprocessor Macros : DEBUG=1

#if DEBUG
    printf("DEBUG is set!");
#endif

...never prints/gets called. It's driving me crazy...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.