tunnelkit/Podfile

30 lines
646 B
Plaintext
Raw Normal View History

2018-08-23 08:19:25 +00:00
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
2019-05-27 15:15:18 +00:00
def shared_pods
2018-08-23 08:19:25 +00:00
pod 'SwiftyBeaver'
2020-04-21 19:51:27 +00:00
pod 'OpenSSL-Apple', '~> 1.1.1g.6'
2019-09-26 10:17:33 +00:00
#pod 'OpenSSL-Apple', :path => '../../personal/openssl-apple'
2019-05-27 15:15:18 +00:00
end
2018-08-23 08:19:25 +00:00
2019-05-27 15:15:18 +00:00
abstract_target 'TunnelKit' do
2018-08-23 10:09:44 +00:00
target 'TunnelKit-iOS' do
platform :ios, '11.0'
2019-05-27 15:15:18 +00:00
shared_pods
2018-08-23 08:19:25 +00:00
end
2019-05-27 10:09:55 +00:00
target 'TunnelKitTests-iOS' do
platform :ios, '11.0'
end
2018-08-23 10:09:44 +00:00
target 'TunnelKitHost' do
platform :ios, '11.0'
2018-08-23 08:19:25 +00:00
end
2018-08-23 10:09:44 +00:00
target 'TunnelKit-macOS' do
2018-08-23 08:19:25 +00:00
platform :osx, '10.11'
2019-05-27 15:15:18 +00:00
shared_pods
2018-08-23 08:19:25 +00:00
end
2018-11-05 17:17:29 +00:00
target 'TunnelKitTests-macOS' do
platform :osx, '10.11'
end
2018-08-23 08:19:25 +00:00
end