add recommended settings for xcode 14 (#1385)

* add recommended settings for xcode 14

* changelog
This commit is contained in:
Yonas Kolb
2023-08-13 00:15:50 +10:00
committed by GitHub
parent 3a25334c74
commit 7ea32005e2
27 changed files with 97 additions and 31 deletions
+4 -1
View File
@@ -285,7 +285,10 @@ public class PBXProjGenerator {
}.flatMap { $0 }
).sorted()
var projectAttributes: [String: Any] = project.attributes
let defaultAttributes: [String: Any] = [
"BuildIndependentTargetsInParallel": "YES"
]
var projectAttributes: [String: Any] = defaultAttributes.merged(project.attributes)
// Set default LastUpgradeCheck if user did not specify
let lastUpgradeKey = "LastUpgradeCheck"
+2 -2
View File
@@ -4,7 +4,7 @@ import ProjectSpec
extension Project {
public var xcodeVersion: String {
XCodeVersion.parse(options.xcodeVersion ?? "12.0")
XCodeVersion.parse(options.xcodeVersion ?? "14.3")
}
var schemeVersion: String {
@@ -12,7 +12,7 @@ extension Project {
}
var compatibilityVersion: String {
"Xcode 11.0"
"Xcode 14.0"
}
var objectVersion: UInt {