Skip to content

Commit

Permalink
Update subspecs for tvOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Maxwell committed Jul 29, 2016
1 parent d87ffc1 commit bc22685
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions DTFoundation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ Pod::Spec.new do |spec|
end

spec.subspec 'UIKit' do |ss|
ss.platform = :ios, '4.3'
ss.ios.deployment_target = '4.3'
ss.tvos.deployment_target = '9.0'
ss.dependency 'DTFoundation/Core'
ss.ios.frameworks = 'QuartzCore'
ss.ios.source_files = 'Core/Source/iOS/*.{h,m}'
ss.frameworks = 'QuartzCore'
ss.source_files = 'Core/Source/iOS/*.{h,m}'
end

spec.subspec 'UIKit_BlocksAdditions' do |ss|
Expand All @@ -42,7 +43,8 @@ Pod::Spec.new do |spec|

spec.subspec 'DTAnimatedGIF' do |ss|
ss.ios.deployment_target = '4.3'
ss.ios.frameworks = 'ImageIO'
ss.tvos.deployment_target = '9.0'
ss.frameworks = 'ImageIO'
ss.source_files = 'Core/Source/iOS/DTAnimatedGIF/*.{h,m}'
end

Expand All @@ -62,6 +64,7 @@ Pod::Spec.new do |spec|

spec.subspec 'DTHTMLParser' do |ss|
ss.ios.deployment_target = '4.3'
ss.tvos.deployment_target = '9.0'
ss.osx.deployment_target = '10.6'
ss.dependency 'DTFoundation/Core'
ss.source_files = 'Core/Source/DTHTMLParser/*.{h,m}'
Expand Down

0 comments on commit bc22685

Please sign in to comment.