-
Notifications
You must be signed in to change notification settings - Fork 3
xcode
Samantha Marshall edited this page Aug 8, 2016
·
4 revisions
To get Xcode to generate new xcconfig files per build you can add this script to your schemes as a pre-build script action:
CONFIGS_DIR=path/to/directory/of/pyconfig_and_xcconfig_files
pyconfig $CONFIGS_DIR
This will cause the xcconfig files to be regenerated each time you run build. This is useful for when you are making many minor edits or don't want to have to remember to regenerate each time you make an edit. This will present the same behavior to your build as editing the xcconfig files normally would.