[YogaKit] support tvOS

- add YogaKitTVSample target
This commit is contained in:
vvveiii
2020-08-13 20:44:27 +08:00
parent a902445203
commit 0d339b6754
32 changed files with 724 additions and 34 deletions

View File

@@ -1,11 +1,21 @@
platform :ios, '9.0'
use_frameworks!
targetsArray = ['YogaKitSample', 'YogaKitSampleTests']
targetsArray.each do |t|
target t do
target 'YogaKitSample' do
platform :ios, '9.0'
pod 'Yoga', :path => '../../Yoga.podspec'
pod 'YogaKit', :path => '../../YogaKit.podspec'
pod 'IGListKit', '~> 4.0.0'
end
end
target 'YogaKitSampleTests' do
platform :ios, '9.0'
pod 'Yoga', :path => '../../Yoga.podspec'
pod 'YogaKit', :path => '../../YogaKit.podspec'
end
target 'YogaKitTVSample' do
platform :tvos, '9.0'
pod 'Yoga', :path => '../../Yoga.podspec'
pod 'YogaKit', :path => '../../YogaKit.podspec'
end