Created by: robbertvanginkel
This allows users to set environment variables for a scheme using a new argument environment_variables
in xcode_workspace_config
. These can be set per scheme action and show up in generated xcode projects.
Example usage:
xcode_workspace_config(
...
environment_variables = {
'Launch': {
'OS_ACTIVITY_MODE': 'disable',
}
}
...
)