mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 02:42:40 +00:00
87527ed290
Major reorganization. No changes in logic. Rename by_* to pod_*.
30 lines
633 B
Ruby
30 lines
633 B
Ruby
source 'https://github.com/cocoapods/specs.git'
|
|
platform :ios, '11.0'
|
|
use_frameworks!
|
|
|
|
load 'Podfile.include'
|
|
|
|
$tunnelkit_name = 'TunnelKit'
|
|
$tunnelkit_specs = ['Protocols/OpenVPN', 'Extra/LZO']
|
|
|
|
def shared_pods
|
|
#pod_version $tunnelkit_name, $tunnelkit_specs, '~> 2.0.0'
|
|
pod_git $tunnelkit_name, $tunnelkit_specs, 'f3edd6e'
|
|
#pod_path $tunnelkit_name, $tunnelkit_specs, '..'
|
|
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
|