-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxlog.podspec
26 lines (22 loc) · 982 Bytes
/
xlog.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
Pod::Spec.new do |s|
s.name = 'xlog'
s.version = '0.1.0'
s.summary = 'A short description of xlog.'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/iossocket/xlog'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'iossocket' => '[email protected]' }
s.source = { :git => 'https://github.com/iossocket/xlog.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'xlog/Classes/**/*.{h,m,mm}'
s.public_header_files = 'xlog/Classes/**/*.h'
s.vendored_frameworks = 'xlog/mars.framework'
s.preserve_path = 'xlog/Classes/xlog.modulemap'
s.module_map = 'xlog/Classes/xlog.modulemap'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.libraries = 'resolv.9', 'z'
s.frameworks = 'SystemConfiguration', 'CoreTelephony'
s.dependency 'SSZipArchive'
end