-
Notifications
You must be signed in to change notification settings - Fork 49
/
BinanceChain.podspec
51 lines (45 loc) · 1.58 KB
/
BinanceChain.podspec
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
Pod::Spec.new do |s|
s.name = 'BinanceChain'
s.version = '1.0.0-beta'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'BinanceChain'
s.author = { 'Michael Henderson' => 'roadkillrabbit@gmail.com' }
s.homepage = 'http://github.com/mh7821/SwiftBinanceChain/'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source = { :path => 'BinanceChain' }
s.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS[config=Debug]' => '-D DEBUG'
}
s.swift_version = '5'
s.default_subspecs = 'Core'
s.static_framework = true
s.subspec 'Core' do |sub|
sub.source_files = 'BinanceChain/Sources/Core/*.swift'
sub.dependency 'BinanceChain/Protobuf'
sub.dependency 'BinanceChain/Util'
sub.dependency 'BinanceChain/Libraries'
sub.dependency 'Alamofire', '~> 4.8'
sub.dependency 'SwiftyJSON', '~> 4.3'
sub.dependency 'SwiftProtobuf', '~> 1.4'
sub.dependency 'Starscream', '~> 3.1'
sub.dependency 'XCGLogger', '~> 7.0'
sub.dependency 'SwiftDate', '~> 6.0.1'
sub.dependency 'HDWalletKit', '~> 0.2.7'
end
s.subspec 'Util' do |sub|
sub.source_files = 'BinanceChain/Sources/Util/*.swift'
end
s.subspec 'Protobuf' do |sub|
sub.source_files = 'BinanceChain/Sources/Protobuf/*.swift'
end
s.subspec 'Test' do |sub|
sub.source_files = 'BinanceChain/Sources/Test/*.swift'
end
s.subspec 'Libraries' do |sub|
sub.source_files = 'BinanceChain/Sources/Libraries/*/*.swift'
end
end