File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,16 @@ TEST_ACTIONS = clean build build-for-testing test-without-building
50
50
51
51
# When adding support for an Xcode version, look for available devices with
52
52
# `xcrun xctrace list devices` (or the deprecated `instruments -s devices`).
53
- ifeq ($(XCODEVERSION ) ,13.4)
53
+ ifeq ($(XCODEVERSION ) ,14.0)
54
+ MAX_SWIFT_VERSION = 5.7
55
+ MIN_SWIFT_VERSION = 5.3
56
+ MAX_IOS_DESTINATION = "platform=iOS Simulator,name=iPhone 13,OS=16.0"
57
+ MIN_IOS_DESTINATION = "platform=iOS Simulator,name=iPhone 8,OS=12.4"
58
+ MAX_TVOS_DESTINATION = "platform=tvOS Simulator,name=Apple TV,OS=16.0"
59
+ # MIN_TVOS_DESTINATION = "platform=tvOS Simulator,name=Apple TV,OS=11.4" TODO: restore
60
+ OTHER_SWIFT_FLAGS = '$$(inherited ) -D SQLITE_ENABLE_FTS5 -D SQLITE_ENABLE_PREUPDATE_HOOK -Xfrontend -warn-concurrency -Xfrontend -enable-actor-data-race-checks'
61
+ GCC_PREPROCESSOR_DEFINITIONS = '$$(inherited ) GRDB_SQLITE_ENABLE_PREUPDATE_HOOK=1'
62
+ else ifeq ($(XCODEVERSION),13.4)
54
63
MAX_SWIFT_VERSION = 5.6
55
64
MIN_SWIFT_VERSION = 5.3
56
65
MAX_IOS_DESTINATION = "platform=iOS Simulator,name=iPhone 13,OS=15.5"
You can’t perform that action at this time.
0 commit comments