I would like to automate XCode to set/replace certain variables or plist values depending on what environment I am building for.
Example: When building for production, I would like this line in a class header file to be...
define kServerName @"www.mydomain.com"
...and for development...
define kServerName @"dev.mydomain.com"
...and for staging...
define kServerName @"staging.mydomain.com"
Also, perhaps set a value in a plist similarly.
Thanks in advance!