Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1303 This gets `pod lib lint` and building the sample app with xcbuild passing (using https://github.com/facebook/yoga/pull/1105 as a template). Reviewed By: cipolleschi Differential Revision: D46470738 fbshipit-source-id: f66f6c6efc1b7cf1443fbca0815a24801c16a626
18 lines
407 B
Ruby
18 lines
407 B
Ruby
use_frameworks!
|
|
|
|
platform :ios, "13.4"
|
|
|
|
target 'YogaKitSample' do
|
|
pod 'YogaKit', :path => '../../YogaKit.podspec'
|
|
pod 'Yoga', :path => '../../Yoga.podspec'
|
|
pod 'IGListKit', '~> 4.0.0'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.4'
|
|
end
|
|
end
|
|
end
|