-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBrotliKit.podspec
More file actions
19 lines (16 loc) · 1017 Bytes
/
BrotliKit.podspec
File metadata and controls
19 lines (16 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'BrotliKit'
s.version = '1.0.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A Swift and Objective-C category for Brotli compression.'
s.homepage = 'https://github.com/luckymarmot/BrotliKit'
s.authors = { 'Paw' => 'https://paw.cloud' }
s.source = { :git => 'https://github.com/luckymarmot/BrotliKit.git', :tag => s.version, :submodules => true }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source_files = 'BrotliKit/*.{h,m,c}', 'Dependencies/brotli/c/common/*.{c,h}', 'Dependencies/brotli/c/dec/*.{c,h}', 'Dependencies/brotli/c/enc/*.{c,h}'
s.preserve_paths = 'Dependencies/brotli/c/include/brotli/*.h'
s.public_header_files = 'BrotliKit/*.h'
s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(PODS_TARGET_SRCROOT)/Dependencies/brotli/c/include" "$(PODS_ROOT)/BrotliKit/Dependencies/brotli/c/include"', 'CLANG_WARN_UNREACHABLE_CODE' => false }
end