-
Notifications
You must be signed in to change notification settings - Fork 18
/
eosswift.podspec
19 lines (19 loc) · 1.1 KB
/
eosswift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'eosswift'
spec.version = '1.6.0'
spec.ios.deployment_target = '11.0'
spec.swift_version = '4.2'
spec.license = { :type => 'APACHE-2.0' }
spec.homepage = 'https://github.com/memtrip/eos-swift'
spec.authors = { 'Samuel Kirton' => '[email protected]' }
spec.summary = 'EOS libraries for swift, designed primarily for iOS development.'
spec.source = { :git => 'https://github.com/memtrip/eos-swift.git', :tag => 'v1.6.0' }
spec.source_files = 'eosswift/**/*.{swift,h,c}'
spec.pod_target_xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/eosswift/eosswift/microecc/**', 'LIBRARY_SEARCH_PATHS' => '$(SRCROOT)/eosswift/eosswift/'}
spec.preserve_paths = 'eosswift/microecc/module.modulemap'
spec.public_header_files = 'eosswift/*.h'
spec.requires_arc = true
spec.dependency 'RxSwift','~> 4.0'
spec.dependency 'RxCocoa', '~> 4.0'
spec.dependency 'BigInt', '~> 3.1.0'
end