tunnelkit/Demo/Podfile

23 lines
440 B
Plaintext
Raw Normal View History

2018-08-23 08:19:25 +00:00
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
abstract_target 'iOS' do
platform :ios, '9.0'
target 'BasicTunnelExtension-iOS' do
2018-08-23 09:46:02 +00:00
pod 'TunnelKit', :path => '..'
2018-08-23 08:19:25 +00:00
end
target 'BasicTunnel-iOS' do
end
end
abstract_target 'macOS' do
platform :osx, '10.11'
target 'BasicTunnelExtension-macOS' do
2018-08-23 09:46:02 +00:00
pod 'TunnelKit', :path => '..'
2018-08-23 08:19:25 +00:00
end
target 'BasicTunnel-macOS' do
end
end