dev
podspec 22 lines 894 Bytes
Raw
1 #
2 # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
3 # Run `pod lib lint cw_decred.podspec` to validate before publishing.
4 #
5 Pod::Spec.new do |s|
6 s.name = 'cw_decred'
7 s.version = '0.0.1'
8 s.summary = 'Cake Wallet Decred'
9 s.description = 'Cake Wallet wrapper over Decred project'
10 s.homepage = 'http://cakewallet.com'
11 s.license = { :file => '../LICENSE' }
12 s.author = { 'Cake Wallet' => 'support@cakewallet.com' }
13
14 s.source = { :path => '.' }
15 s.source_files = 'Classes/**/*'
16 s.dependency 'FlutterMacOS'
17
18 s.platform = :osx, '10.11'
19 s.vendored_libraries = 'External/lib/libdcrwallet.a'
20 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', "OTHER_LDFLAGS" => "-force_load $(PODS_TARGET_SRCROOT)/External/lib/libdcrwallet.a -lstdc++" }
21 s.swift_version = '5.0'
22 end