forked from i-stack/TrustCore
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTrustCore.podspec
More file actions
22 lines (18 loc) · 786 Bytes
/
TrustCore.podspec
File metadata and controls
22 lines (18 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'TrustCore'
s.version = '0.2.2'
s.summary = 'Core Ethereum data structures and algorithms.'
s.homepage = 'https://github.com/TrustWallet/trust-core'
s.license = 'MIT'
s.authors = { 'Alejandro Isaza' => 'al@isaza.ca' }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.swift_version = '4.2'
s.source = { git: 'https://github.com/TrustWallet/trust-core.git', tag: s.version }
s.source_files = 'Sources/**/*.{swift,h,m}'
s.public_header_files = 'Sources/TrustCore.h', 'Sources/Crypto.h'
s.dependency 'BigInt'
s.dependency 'TrezorCrypto', '~> 0.0.8'
s.dependency 'SwiftProtobuf', '~> 1.0'
s.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
end