forked from EOSIO/eosio-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEosioSwift.podspec
41 lines (35 loc) · 1.85 KB
/
EosioSwift.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
#
# Be sure to run `pod lib lint EosioSwift.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'EosioSwift'
s.version = '0.2.1'
s.summary = 'EOSIO SDK for Swift - API for integrating with EOSIO-based blockchains.'
s.homepage = 'https://github.com/EOSLaoMao/eosio-swift'
s.license = { :type => 'MIT', :text => <<-LICENSE
Copyright (c) 2017-2019 block.one and its contributors. All rights reserved.
LICENSE
}
s.author = { 'Todd Bowden' => '[email protected]',
'Serguei Vinnitskii' => '[email protected]',
'Farid Rahmani' => '[email protected]',
'Brandon Fancher' => '[email protected]',
'Mark Johnson' => '[email protected]',
'Paul Kim' => '[email protected]',
'Steve McCoole' => '[email protected]',
'Ben Martell' => '[email protected]' }
s.source = { :git => 'https://github.com/EOSLaoMao/eosio-swift.git', :tag => "v" + s.version.to_s }
s.swift_version = '5.2'
s.ios.deployment_target = '11.0'
s.source_files = 'EosioSwift/**/*.swift'
s.pod_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'CLANG_ENABLE_MODULES' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule',
'ENABLE_BITCODE' => 'YES' }
s.ios.dependency 'BigInt', '~> 5.0'
s.ios.dependency 'PromiseKit', '~> 6.8'
end