tunnelkit/Podfile

42 lines
769 B
Plaintext
Raw Permalink 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'
2021-10-06 16:19:28 +00:00
pod 'OpenSSL-Apple', '~> 1.1.1l.11'
2019-05-27 15:15:18 +00:00
end
2018-08-23 08:19:25 +00:00
2021-01-03 17:23:56 +00:00
def demo_pods
pod 'SwiftyBeaver'
end
abstract_target 'ios' do
platform :ios, '12.0'
2018-08-23 10:09:44 +00:00
target 'TunnelKit-iOS' do
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
end
2018-08-23 10:09:44 +00:00
target 'TunnelKitHost' do
2018-08-23 08:19:25 +00:00
end
2021-01-03 17:23:56 +00:00
target 'TunnelKitDemo-iOS' do
demo_pods
end
target 'TunnelKitDemoTunnel-iOS' do
end
end
2018-08-23 08:19:25 +00:00
2021-01-03 17:23:56 +00:00
abstract_target 'macos' do
platform :osx, '10.15'
2018-08-23 10:09:44 +00:00
target 'TunnelKit-macOS' do
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
2021-01-03 17:23:56 +00:00
end
target 'TunnelKitDemo-macOS' do
demo_pods
end
target 'TunnelKitDemoTunnel-macOS' do
2018-11-05 17:17:29 +00:00
end
2018-08-23 08:19:25 +00:00
end