passforios/Podfile
2019-06-08 10:39:17 -07:00

24 lines
566 B
Ruby

platform :ios, '10.2'
use_frameworks!
target 'passKit' do
target 'pass' do
inherit! :search_paths
end
target 'passExtension' do
inherit! :search_paths
end
target 'passKitTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
cflags = config.build_settings['OTHER_CFLAGS'] || ['$(inherited)']
cflags << '-fembed-bitcode'
config.build_settings['OTHER_CFLAGS'] = cflags
end
end
end