33 lines
1.3 KiB
Ruby
33 lines
1.3 KiB
Ruby
project 'Sample.xcodeproj'
|
|
|
|
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
swift_version = "4.1"
|
|
|
|
target 'Sample' do
|
|
|
|
pod 'RSocket', :podspec => '../third-party-podspecs/RSocket.podspec'
|
|
pod 'EasyWSClient', :podspec => '../third-party-podspecs/EasyWSClient.podspec'
|
|
pod 'DoubleConversion', :podspec => '../third-party-podspecs/DoubleConversion.podspec'
|
|
pod 'glog', :podspec => '../third-party-podspecs/glog.podspec'
|
|
pod 'Folly', :podspec => '../third-party-podspecs/Folly.podspec'
|
|
pod 'PeerTalk', :git => 'https://github.com/rsms/peertalk'
|
|
pod 'ComponentKit', :podspec => '../third-party-podspecs/ComponentKit.podspec'
|
|
pod 'Yoga','~>1.8.1', :modular_headers => true
|
|
pod 'Sonar', :podspec => '../../xplat/Sonar/SonarKitCPP.podspec'
|
|
pod 'SonarKit', :podspec => '../SonarKit.podspec'
|
|
pod 'SonarKit/SonarKitLayoutComponentKitSupport', :podspec => '../SonarKit.podspec'
|
|
pod 'SonarKit/SKIOSNetworkPlugin', :podspec => '../SonarKit.podspec'
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
if ['YogaKit'].include? target.name
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['SWIFT_VERSION'] = swift_version
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|