tunnelkit/Demo/Podfile
Davide De Rosa ab050c6c00 Upgrade/fix demo project
- Target
- Pods
- Entitlements
- Swift 4.2
- License headers
2018-10-06 16:22:02 +02:00

23 lines
441 B
Ruby

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
abstract_target 'iOS' do
platform :ios, '11.0'
target 'BasicTunnelExtension-iOS' do
pod 'TunnelKit', :path => '..'
end
target 'BasicTunnel-iOS' do
end
end
abstract_target 'macOS' do
platform :osx, '10.11'
target 'BasicTunnelExtension-macOS' do
pod 'TunnelKit', :path => '..'
end
target 'BasicTunnel-macOS' do
end
end