tunnelkit/Podfile
Davide De Rosa eb247f2c5b Bump deployment targets
- iOS 11.0 -> 12.0
- macOS 10.11 -> 10.15
- Swift 5.0 -> 5.1
2020-11-15 21:12:53 +01:00

30 lines
646 B
Ruby

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def shared_pods
pod 'SwiftyBeaver'
pod 'OpenSSL-Apple', '~> 1.1.1g.6'
#pod 'OpenSSL-Apple', :path => '../../personal/openssl-apple'
end
abstract_target 'TunnelKit' do
target 'TunnelKit-iOS' do
platform :ios, '12.0'
shared_pods
end
target 'TunnelKitTests-iOS' do
platform :ios, '12.0'
end
target 'TunnelKitHost' do
platform :ios, '12.0'
end
target 'TunnelKit-macOS' do
platform :osx, '10.15'
shared_pods
end
target 'TunnelKitTests-macOS' do
platform :osx, '10.15'
end
end