Commits

Daniel Dunbar committed 713a3e603e6
[Xcodeproj] Add a --xcconfig-overrides option. - This can be used to override settings defined in the generated project to adapt it so that it builds appropriately for an including project (for example, you can use this to set the deployment target or the code signing identity). Example usage: swift build --xcconfig-overrides="path/to/Overrides.xcconfig" -X where `Overrides.xcconfig` contains something like: CODE_SIGN_IDENTITY = iPhone Developer IPHONEOS_DEPLOYMENT_TARGET = 9.3 - This is currently undocumented, but it does provide a way to make forward progress on setting up usable projects which incorporate SwiftPM based packages.