@@ -19,9 +19,9 @@ Pod::Spec.new do |s|
19
19
s . swift_versions = [ '5' ]
20
20
21
21
ios_deployment_target = '17.0'
22
- tvos_deployment_target = '11 .0'
23
- osx_deployment_target = '10.13 '
24
- watchos_deployment_target = '4 .0'
22
+ tvos_deployment_target = '17 .0'
23
+ osx_deployment_target = '14.0 '
24
+ watchos_deployment_target = '10 .0'
25
25
26
26
s . ios . deployment_target = ios_deployment_target
27
27
s . tvos . deployment_target = tvos_deployment_target
@@ -32,6 +32,11 @@ Pod::Spec.new do |s|
32
32
ss . source_files = 'Sources/SQLite/**/*.{c,h,m,swift}'
33
33
ss . exclude_files = 'Sources/**/Cipher.swift'
34
34
ss . library = 'sqlite3'
35
+
36
+ ss . ios . deployment_target = ios_deployment_target
37
+ ss . tvos . deployment_target = tvos_deployment_target
38
+ ss . osx . deployment_target = osx_deployment_target
39
+ ss . watchos . deployment_target = watchos_deployment_target
35
40
36
41
ss . test_spec 'tests' do |test_spec |
37
42
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -51,6 +56,11 @@ Pod::Spec.new do |s|
51
56
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SQLITE_SWIFT_STANDALONE=1'
52
57
}
53
58
ss . dependency 'sqlite3'
59
+
60
+ ss . ios . deployment_target = ios_deployment_target
61
+ ss . tvos . deployment_target = tvos_deployment_target
62
+ ss . osx . deployment_target = osx_deployment_target
63
+ ss . watchos . deployment_target = watchos_deployment_target
54
64
55
65
ss . test_spec 'tests' do |test_spec |
56
66
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -68,6 +78,11 @@ Pod::Spec.new do |s|
68
78
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SQLITE_HAS_CODEC=1 SQLITE_SWIFT_SQLCIPHER=1'
69
79
}
70
80
ss . dependency 'SQLCipher' , '>= 4.0.0'
81
+
82
+ ss . ios . deployment_target = ios_deployment_target
83
+ ss . tvos . deployment_target = tvos_deployment_target
84
+ ss . osx . deployment_target = osx_deployment_target
85
+ ss . watchos . deployment_target = watchos_deployment_target
71
86
72
87
ss . test_spec 'tests' do |test_spec |
73
88
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
0 commit comments