Skip to content

Commit cd733f3

Browse files
authored
Merge pull request #23 from akitchen/set-min-deployment-targets
Add min deployment_target values for Xcode 15
2 parents 68cdf03 + a2b935e commit cd733f3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

sqlite3.podspec

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ make sqlite3.c sqlite3.h sqlite3ext.h
2222
CMD
2323
s.requires_arc = false
2424

25+
# Setting a deployment_target enables linting of podspecs which depend on sqlite3
26+
# Absolute minimum value for a given version of Xcode can be found at https://developer.apple.com/support/xcode/
27+
s.ios.deployment_target = '12.0'
28+
s.tvos.deployment_target = '12.0'
29+
s.macos.deployment_target = '10.13'
30+
s.watchos.deployment_target = '4.0'
31+
2532
s.default_subspecs = 'common'
2633

2734
s.subspec 'common' do |ss|

0 commit comments

Comments
 (0)