Skip to content

xcodebuildsettings

starkos edited this page Apr 10, 2021 · 3 revisions

⚠️ We have a new website! Visit now for the most update to date documentation.
       This wiki is no longer being maintained.


xcodebuildsettings

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

Parameters

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

Applies To

The config scope.

Availability

Premake 5.0.0 alpha 12 or later.

Examples

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

will generate:

buildSettings = {
    ...
    MY_KEY = MY_VALUE;
    ...
}
Clone this wiki locally