-
Notifications
You must be signed in to change notification settings - Fork 3
build_settings
Samantha Marshall edited this page Jul 11, 2016
·
3 revisions
The function of xcconfig files is to define build settings for an Xcode target when run in a specific build configuration. The pyconfig language uses simple and declarative statements to outline what the name of the build setting is and encapsulates the scope of how that variable is set in the file.
setting OTHER_LDFLAGS {
...
}
This syntax can be used to declare any build setting variable, however it must conform to the expected format of build settings names you would have in an xcconfig file. If you are unfamiliar with the rules around the naming conventions in xcconfig files you should refer to this page.