forked from consenlabs/token-core-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTokenCore.podspec
35 lines (30 loc) · 1.01 KB
/
TokenCore.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
Pod::Spec.new do |s|
s.name = "TokenCore"
s.version = "0.1"
s.summary = "Blockchain Library for imToken"
s.description = <<-DESC
Token Core Library powering imToken iOS app.
DESC
s.homepage = "https://token.im"
s.license = {
type: "Apache License, Version 2.0",
file: "LICENSE"
}
s.author = { "James Chen" => "[email protected]" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/consenlabs/token-core-ios.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.{h,m,swift}", "Vendor/**/*.{h,m,c}"
s.swift_version = "4.0"
s.vendored_frameworks = [
"Vendor/secp256k1/secp256k1.framework"
]
s.preserve_paths = "Modules"
s.pod_target_xcconfig = {
"SWIFT_INCLUDE_PATHS" => "$(SRCROOT)/TokenCore/Modules",
"OTHER_LDFLAGS" => "-lObjC",
"SWIFT_OPTIMIZATION_LEVEL" => "-Owholemodule"
}
s.dependency "CryptoSwift", "0.9.0"
s.dependency "BigInt", "3.0.0"
s.dependency "GRKOpenSSLFramework"
end