-
Notifications
You must be signed in to change notification settings - Fork 875
/
Logan.podspec
23 lines (19 loc) · 1.03 KB
/
Logan.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Logan'
s.version = '1.2.10'
s.summary = 'Logan is a lightweight case logging system based on mobile platform.'
s.homepage = 'https://github.com/Meituan-Dianping/Logan'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jiangteng' => '[email protected]', 'yxiangnan' => '[email protected]', 'maxiaojun' => '[email protected]'}
s.source = { :git => 'https://github.com/Meituan-Dianping/Logan.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.source_files = "Logan/iOS/*.{h,m}", "Logan/Clogan/*.{h,c}"
s.public_header_files = "Logan/iOS/*.h"
s.subspec 'mbedtls' do |mbedtls|
mbedtls.source_files = "Logan/mbedtls/**/*.{h,c}"
mbedtls.header_dir = 'mbedtls'
mbedtls.private_header_files = "Logan/mbedtls/**/*.h"
mbedtls.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "${PODS_ROOT}/Logan/Logan/**"}
end
end