In the "Apple LLVM 7.0 - Preprocessing" section under the "Build Settings" tab, I've defined a Preprocessor Macros as:
HUBNAME=myhub
In my code, I'm trying to refer to the value of HUBNAME as a string:
SBNotificationHub* hub = [[SBNotificationHub alloc] initWithConnectionString:HUBLISTENACCESS notificationHubPath:HUBNAME];
But Xcode thinks 'myhub' is the name of my variable:
Use of undeclared identifier 'myhub'
Can someone help me figure out how to access 'myhub' as a string?