forked from argentlabs/web3.swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
web3.swift.podspec
28 lines (22 loc) · 1.15 KB
/
web3.swift.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
Pod::Spec.new do |s|
s.name = 'web3.swift'
s.version = '0.0.5'
s.license = 'MIT'
s.summary = 'Ethereum API for Swift'
s.homepage = 'https://github.com/argentlabs/web3.swift'
s.authors = { 'Julien Niset' => '[email protected]', 'Matt Marshall' => '[email protected]' }
s.source = { :git => 'https://github.com/argentlabs/web3.swift.git', :tag => s.version.to_s }
s.module_name = 'web3'
s.swift_version = '4.1'
s.ios.deployment_target = '9.0'
s.source_files = 'web3swift/web3swift.h', 'web3swift/src/**/*.swift', 'web3swift/lib/**/*.{c,h}'
s.pod_target_xcconfig = {
'SWIFT_INCLUDE_PATHS[sdk=iphonesimulator*]' => '$(PODS_TARGET_SRCROOT)/web3swift/lib/** $(PODS_TARGET_SRCROOT)/web3swift/frameworks/CommonCrypto/iphonesimulator/',
'SWIFT_INCLUDE_PATHS[sdk=iphoneos*]' => '$(PODS_TARGET_SRCROOT)/web3swift/lib/** $(PODS_TARGET_SRCROOT)/web3swift/frameworks/CommonCrypto/iphoneos/'
}
s.preserve_paths = 'web3swift/lib/**/module.map', 'web3swift/frameworks/CommonCrypto/**/*'
# Do not include the C libs in export
s.public_header_files = 'web3swift/web3swift.h'
s.dependency 'BigInt', '~> 3.0.1'
s.dependency 'secp256k1_ios', '~> 0.1.3'
end