I have a preprocessor macro defined in build settings
FOO=BAR
That value I want to massage into an Objective-C string literal that can be passe
You need to define preprocessor macro like,
FOO=\@\"BAR\"
And use code side like,
[NSString stringWithFormat:@"macro: %@", FOO];