-
Notifications
You must be signed in to change notification settings - Fork 0
/
LevelStorage.podspec
28 lines (28 loc) · 1.17 KB
/
LevelStorage.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
Pod::Spec.new do |s|
s.name = "LevelStorage"
s.version = "1.0.3"
s.summary = "storage"
s.homepage = 'https://github.com/jasenhuang'
s.license = { :type => 'MIT' }
s.author = { 'jasenhuang' => '[email protected]' }
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/jasenhuang/LevelStorage.git", :tag => '1.0.3' }
s.source_files = "LevelStorage/*.{h,m,mm}",
"LevelStorage/Coding/*.{h,m,mm}"
s.public_header_files = "LevelStorage/LevelStorage.h",
"LevelStorage/LevelKV.h",
"LevelStorage/LevelDB.h",
"LevelStorage/LevelKV+JSON.h",
"LevelStorage/LevelMacro.h"
s.compiler_flags = '-x objective-c++'
s.requires_arc = true
s.frameworks = "Foundation"
s.libraries = 'c++', 'z'
s.pod_target_xcconfig = {
"CLANG_CXX_LANGUAGE_STANDARD" => "gnu++17",
"CLANG_CXX_LIBRARY" => "libc++",
"CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF" => "NO",
}
s.dependency 'leveldb-library', '1.20'
end