-
Notifications
You must be signed in to change notification settings - Fork 12
/
EosioSwiftEcc.podspec
45 lines (39 loc) · 2.07 KB
/
EosioSwiftEcc.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
42
43
44
45
#
# Be sure to run `pod lib lint EosioSwiftEcc.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 = 'EosioSwiftEcc'
s.version = '0.4.0'
s.summary = 'Elliptical Curve Cryptography (ECC) functions for EOSIO. '
s.homepage = 'https://github.com/EOSIO/eosio-swift-ecc'
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/EOSIO/eosio-swift-ecc.git', :tag => "v" + s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.source_files = 'EosioSwiftEcc/**/*.{c,h,m,cpp,hpp}',
'EosioSwiftEcc/**/*.swift'
s.libraries = "c++"
s.pod_target_xcconfig = { 'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++17',
'CLANG_CXX_LIBRARY' => 'libc++',
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'CLANG_ENABLE_MODULES' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule',
'ENABLE_BITCODE' => 'YES' }
s.ios.dependency 'GRKOpenSSLFramework', '1.0.2.19'
s.ios.dependency 'EosioSwift', '~> 0.4.0'
end