The “Build settings (xcconfig)” (xcconfig_content
) input can now be a path to a existing .xcconfig
file. Previously it could have been only the contents.
If is empty, no setting is changed. This is required when the -xcconfig
additional option is used.
When xcconfig_content
is set it can be either:
-
Existing
.xcconfig
file path.
Example:./ios-sample/ios-sample/Configurations/Dev.xcconfig
-
The contents of a newly created temporary
.xcconfig
file. (This is the default.)
Build settings must be separated by newline character (\n
).
Example:COMPILER_INDEX_STORE_ENABLE = NO ONLY_ACTIVE_ARCH[config=Debug][sdk=*][arch=*] = YES