-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMXLoggerCore.podspec
34 lines (24 loc) · 1.16 KB
/
MXLoggerCore.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
Pod::Spec.new do |s|
# pod lib lint --allow-warnings --verbose --skip-import-validation
s.name = "MXLoggerCore"
s.version = "1.2.14"
s.summary = "MXLoggerCore 客户端夸平台日志收集"
s.description = <<-DESC
MXLoggerCore 客户端夸平台日志收集
DESC
s.homepage = "https://github.com/coder-dongjiayi/MXLogger"
s.license = { :type => "BSD 3-Clause", :file => "LICENSE.TXT"}
s.author = { "dongjiayi" => "[email protected]" }
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/coder-dongjiayi/MXLogger.git", :tag => "v#{s.version}" }
s.source_files = "Core", "Core/*.{h,cpp,hpp}", "Core/md5/*","Core/aes/*.{hpp,cpp}","Core/aes/openssl/*","Core/json/*","Core/flatbuffers/*","Core/sink/*"
s.public_header_files = "Core/mxlogger.hpp","Core/mxlogger_util.hpp"
s.libraries = "z", "c++"
s.framework = "CoreFoundation","UIKit"
s.pod_target_xcconfig = {
'VALID_ARCHS' => 'x86_64 arm64',
"CLANG_CXX_LANGUAGE_STANDARD" => "gnu++17",
"CLANG_CXX_LIBRARY" => "libc++",
"CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF" => "NO",
}
end