Skip to content

Commit

Permalink
refs #43 Fix podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gooichi committed Feb 11, 2021
1 parent ac52f61 commit bf21351
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion GSLAdditions.podspec
Expand Up @@ -8,9 +8,14 @@ Pod::Spec.new do |s|
s.summary = 'Objective-C GSL categories for iOS, macOS, watchOS and tvOS.'
s.requires_arc = true

s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'

s.subspec 'FoundationGSLAdditions' do |sp|
sp.ios.deployment_target = '9.0'
sp.osx.deployment_target = '10.9'
sp.macos.deployment_target = '10.9'
sp.tvos.deployment_target = '9.0'
sp.watchos.deployment_target = '2.0'
sp.source_files = 'FoundationGSLAdditions/*.{h,m}'
Expand Down

0 comments on commit bf21351

Please sign in to comment.