forked from eduvpn/apple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
51 lines (38 loc) · 985 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source 'https://cdn.cocoapods.org/'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods', :generate_multiple_pod_projects => true
project 'EduVPN', 'Debug' => :debug, 'Release' => :release
# iOS Pods
def pods_ios
platform :ios, '12.0'
pod 'TunnelKit', :git => 'https://github.com/passepartoutvpn/tunnelkit.git'
end
# macOS Pods
def pods_macos
platform :osx, '10.15'
pod 'TunnelKit', :git => 'https://github.com/passepartoutvpn/tunnelkit.git'
end
# Setup targets
target 'EduVPN-iOS' do
pods_ios
pod 'AppAuth', :git => 'https://github.com/openid/AppAuth-iOS.git'
pod 'ASN1Decoder'
pod 'libsodium'
pod 'Moya'
pod 'PromiseKit/CorePromise'
end
target 'OpenVPNTunnelExtension-iOS' do
pods_ios
end
target 'EduVPN-macOS' do
pods_macos
pod 'AppAuth', :git => 'https://github.com/openid/AppAuth-iOS.git'
pod 'ASN1Decoder'
pod 'libsodium'
pod 'Moya'
pod 'PromiseKit/CorePromise'
end
target 'OpenVPNTunnelExtension-macOS' do
pods_macos
end