mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-04 15:02:08 +00:00
af68d0b639
- Handle pushed --redirect-gateway - DNS fallback - Fix UDP failure on high-speed link
28 lines
724 B
Ruby
28 lines
724 B
Ruby
source 'https://github.com/cocoapods/specs.git'
|
|
platform :ios, '11.0'
|
|
use_frameworks!
|
|
|
|
def shared_pods
|
|
#pod 'TunnelKit', '~> 1.6.2'
|
|
#pod 'TunnelKit/LZO', '~> 1.6.2'
|
|
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '6fb409b'
|
|
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '6fb409b'
|
|
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
|
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
|
|
pod 'SSZipArchive'
|
|
end
|
|
|
|
target 'Passepartout-Core' do
|
|
shared_pods
|
|
end
|
|
target 'Passepartout-CoreTests' do
|
|
shared_pods
|
|
end
|
|
|
|
target 'Passepartout-iOS' do
|
|
pod 'MBProgressHUD'
|
|
end
|
|
target 'Passepartout-iOS-Tunnel' do
|
|
shared_pods
|
|
end
|