forked from horizontalsystems/bitcoin-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
96 lines (73 loc) · 1.54 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
workspace 'BitcoinKit'
project 'Demo/Demo'
project 'BitcoinCore/BitcoinCore'
project 'BitcoinKit/BitcoinKit'
project 'BitcoinCashKit/BitcoinCashKit'
project 'DashKit/DashKit'
def internal_pods
pod 'HSCryptoKit', '~> 1.4'
pod 'HSHDWalletKit', '~> 1.1'
end
def kit_pods
internal_pods
pod 'Alamofire', '~> 4.0'
pod 'ObjectMapper', '~> 3.0'
pod 'RxSwift', '~> 5.0'
pod 'BigInt', '~> 4.0'
pod 'GRDB.swift', '~> 4.0'
end
target :BitcoinCore do
project 'BitcoinCore/BitcoinCore'
kit_pods
end
target :BitcoinKit do
project 'BitcoinKit/BitcoinKit'
kit_pods
end
target :BitcoinCashKit do
project 'BitcoinCashKit/BitcoinCashKit'
kit_pods
end
target :DashKit do
project 'DashKit/DashKit'
kit_pods
pod 'CryptoBLS.swift', '~> 1.1'
pod 'CryptoX11.swift', '~> 1.1'
end
target :Demo do
project 'Demo/Demo'
kit_pods
pod 'CryptoBLS.swift', '~> 1.1'
pod 'CryptoX11.swift', '~> 1.1'
end
def test_pods
pod 'Quick'
pod 'Nimble'
pod 'Cuckoo'
pod 'RxBlocking', '~> 5.0'
end
target :BitcoinCoreTests do
project 'BitcoinCore/BitcoinCore'
internal_pods
test_pods
end
target :BitcoinKitTests do
project 'BitcoinKit/BitcoinKit'
internal_pods
test_pods
end
target :BitcoinCashKitTests do
project 'BitcoinCashKit/BitcoinCashKit'
internal_pods
test_pods
end
target :DashKitTests do
project 'DashKit/DashKit'
internal_pods
test_pods
pod 'CryptoBLS.swift', '~> 1.1'
pod 'CryptoX11.swift', '~> 1.1'
end