Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTroy Stump <tstump@phunware.com>2021-06-12 04:58:37 +0300
committerTroy Stump <tstump@phunware.com>2021-06-12 04:58:37 +0300
commit92619f9484c00e2df22d950a178191ac39f98f00 (patch)
tree08453395bba9a2d59d5239524313d168cb2cd153
parentdec71a7e81dbdf7c1d676f40ae642c526feceaf2 (diff)
Update podspec to include the same deployment targets as defined by the Xcode project
-rw-r--r--FMDB.podspec6
1 files changed, 4 insertions, 2 deletions
diff --git a/FMDB.podspec b/FMDB.podspec
index 6f91084..8981908 100644
--- a/FMDB.podspec
+++ b/FMDB.podspec
@@ -7,8 +7,10 @@ Pod::Spec.new do |s|
s.author = { 'August Mueller' => 'gus@flyingmeat.com' }
s.source = { :git => 'https://github.com/ccgus/fmdb.git', :tag => "#{s.version}" }
s.requires_arc = true
- s.osx.deployment_target = '10.11'
- s.default_subspec = 'standard'
+ s.ios.deployment_target = '9.2'
+ s.osx.deployment_target = '10.11'
+ s.watchos.deployment_target = '2.0'
+ s.default_subspec = 'standard'
# use the built-in library version of sqlite3
s.subspec 'standard' do |ss|