@@ -19,9 +19,9 @@ Pod::Spec.new do |s|
1919 s . swift_versions = [ '5' ]
2020
2121 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'
2525
2626 s . ios . deployment_target = ios_deployment_target
2727 s . tvos . deployment_target = tvos_deployment_target
@@ -32,6 +32,11 @@ Pod::Spec.new do |s|
3232 ss . source_files = 'Sources/SQLite/**/*.{c,h,m,swift}'
3333 ss . exclude_files = 'Sources/**/Cipher.swift'
3434 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
3540
3641 ss . test_spec 'tests' do |test_spec |
3742 test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -51,6 +56,11 @@ Pod::Spec.new do |s|
5156 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SQLITE_SWIFT_STANDALONE=1'
5257 }
5358 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
5464
5565 ss . test_spec 'tests' do |test_spec |
5666 test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -68,6 +78,11 @@ Pod::Spec.new do |s|
6878 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SQLITE_HAS_CODEC=1 SQLITE_SWIFT_SQLCIPHER=1'
6979 }
7080 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
7186
7287 ss . test_spec 'tests' do |test_spec |
7388 test_spec . resources = 'Tests/SQLiteTests/Resources/*'
0 commit comments