-
Notifications
You must be signed in to change notification settings - Fork 17
/
DashSync.podspec
46 lines (38 loc) · 2.08 KB
/
DashSync.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
#
# Run the following command to validate the podspec
# pod lib lint DashSync.podspec --no-clean --verbose --allow-warnings
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DashSync'
s.version = '0.1.0'
s.summary = 'Dash Sync is a light and configurable blockchain client that you can embed into your iOS Application.'
s.description = 'Dash Sync is a light blockchain client that you can embed into your iOS Application. It is fully customizable to make the type of node you are interested in.'
s.homepage = 'https://github.com/dashevo/dashsync-ios.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'quantumexplorer' => '[email protected]' }
s.source = { :git => 'https://github.com/dashevo/dashsync-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.requires_arc = true
s.source_files = "DashSync/shared/**/*.{h,m,mm}"
s.public_header_files = 'DashSync/shared/**/*.h'
s.ios.source_files = "DashSync/iOS/**/*.{h,m,mm}"
s.ios.public_header_files = 'DashSync/iOS/**/*.h'
s.macos.source_files = "DashSync/macOS/**/*.{h,m,mm}"
s.macos.public_header_files = 'DashSync/macOS/**/*.h'
s.libraries = 'resolv', 'bz2', 'sqlite3'
s.resource_bundles = {'DashSync' => ['DashSync/shared/*.xcdatamodeld', 'DashSync/shared/MappingModels/*.xcmappingmodel', 'DashSync/shared/*.plist', 'DashSync/shared/*.lproj', 'DashSync/shared/MasternodeLists/*.dat', 'DashSync/shared/*.json']}
s.framework = 'Foundation', 'SystemConfiguration', 'CoreData', 'BackgroundTasks', 'Security'
s.ios.framework = 'UIKit'
s.macos.framework = 'Cocoa'
s.compiler_flags = '-Wno-comma'
s.dependency 'DashSharedCore', '0.4.16'
s.dependency 'CocoaLumberjack', '3.7.2'
s.ios.dependency 'DWAlertController', '0.2.1'
s.dependency 'DSDynamicOptions', '0.1.2'
s.dependency 'DAPI-GRPC', '0.22.0-dev.8'
s.dependency 'TinyCborObjc', '0.4.6'
s.prefix_header_contents = '#import "DSEnvironment.h"'
end