vote up 0 vote down star
2

I want my XCode Objective-C project to be able to detect which configuration it is being built with. How can I achieve this?

Thanks in advance.

flag

74% accept rate

1 Answer

vote up 4 vote down check

You can have per-configuration macro definitions. Open up your project settings, select your configuration from the Configuration drop-down menu, and go to Preprocessor Macros. For Debug, I recommend defining the macro _DEBUG, and for release I recommend defining _RELEASE, as these are the typical ones which are used. These are passed on to the compiler as -D options, e.g. -D_DEBUG.

You can also put -D options directly into the Other C Flags setting.

link|flag
Can I define them under "User-Defined" because I don't see "Preprocessor Macros" unless you mean "Info.plist other preprocessor flags"? – JP Sep 28 at 4:27
It seems that if I selected "Base SDK" the options would then appear. – JP Sep 28 at 4:40

Your Answer

Get an OpenID
or

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