How to access an Xcode user to determine build parameters from a run script in the build phase?

I run the script during the build phase.

Xcode allows you to define custom build settings. I thought I would use these settings to store the values ​​or paths that I want to pass to the script.

Is it possible? How can I pass custom assembly script settings during the build phase? Can you point me to some documentation or tutorial?

I am using Xcode 4.3.1

+8
build-automation xcode xcode4 build-settings
source share
1 answer

All you have to do is use the appropriate form of the variable name, depending on where you use it.

For example: $ foo in the script launch dialog box.

+3
source share

All Articles