Search code examples
xcodexcode4build-automationbuild-settingsrun-script

How to access Xcode user define build settings from run script in build phase?


I run a script during a build phase.

Xcode lets you define user-defined build settings. I thought I would use these settings to store values or paths that I want to pass to the script.

Is this possible? How can I pass user-defined build settings to script during the build phase? Can you point me at some documentation or tutorial?

I am using Xcode 4.3.1


Solution

  • All you need to do is use the appropriate form of the variable name, depending where you are using it.

    Eg: $foo in the run script dialog box.