Skip to main content

xcodebuildsettings

Specifies a set of XCode build settings.

xcodebuildsettings { ["key"] = "value" }

Parameters​

key/value pairs to apply to buildSettings blocks of the generated pbxproj

Applies To​

Project configurations.

Availability​

Premake 5.0.0-alpha12 or later.

Examples​

xcodebuildsettings { ["MY_KEY"] = "MY_VALUE" }

will generate:

    buildSettings = {
...
MY_KEY = MY_VALUE;
...
}