Skip to content

Commit

Permalink
Merge pull request #23 from akitchen/set-min-deployment-targets
Browse files Browse the repository at this point in the history
Add min deployment_target values for Xcode 15
  • Loading branch information
clemensg authored Mar 2, 2024
2 parents 68cdf03 + a2b935e commit cd733f3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sqlite3.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ make sqlite3.c sqlite3.h sqlite3ext.h
CMD
s.requires_arc = false

# Setting a deployment_target enables linting of podspecs which depend on sqlite3
# Absolute minimum value for a given version of Xcode can be found at https://developer.apple.com/support/xcode/
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.macos.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'

s.default_subspecs = 'common'

s.subspec 'common' do |ss|
Expand Down

0 comments on commit cd733f3

Please sign in to comment.