-
Notifications
You must be signed in to change notification settings - Fork 5
/
TinyCborObjc.podspec
30 lines (23 loc) · 1.13 KB
/
TinyCborObjc.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
Pod::Spec.new do |s|
s.name = 'TinyCborObjc'
s.version = '0.4.6'
s.summary = 'Objective-C wrapper for TinyCbor - Concise Binary Object Representation (CBOR) Library'
s.description = <<-DESC
TinyCborObjc allows encoding/decoding Foundation-objects into/from CBOR representation. Supports NSDictionary, NSArray, NSString, NSNumber and NSNull.
DESC
s.homepage = 'https://github.com/dashevo/TinyCborObjc'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Andrew Podkovyrin' => '[email protected]' }
s.source = { git: 'https://github.com/dashevo/TinyCborObjc.git', tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/podkovyr'
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.source_files = 'TinyCborObjc/*.{h,m,c}'
s.private_header_files = 'TinyCborObjc/cbortojson_nsstring.h'
s.dependency 'tinycbor', '0.5.4-alpha1'
s.pod_target_xcconfig = {
'CLANG_WARN_DOCUMENTATION_COMMENTS' => 'NO',
'GCC_WARN_64_TO_32_BIT_CONVERSION' => 'NO'
}
end