-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEventTracing.podspec
52 lines (46 loc) · 1.85 KB
/
EventTracing.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
s.name = 'EventTracing'
s.version = '2.0.0'
s.summary = 'EventTracing'
s.description = <<-DESC
EventTracing-iOS
DESC
s.homepage = 'https://github.com/EventTracing/EventTracing-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'eventtracing' => '[email protected]' }
s.source = { :git => 'https://github.com/EventTracing/EventTracing-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.library = 'c++'
s.pod_target_xcconfig = {
'GCC_PRECOMPILE_PREFIX_HEADER' => true
}
s.source_files = [
'EventTracing-iOS/Classes/**/*.{h,m,mm}'
]
s.private_header_files = [
'EventTracing-iOS/Classes/Categorys/*.h',
'EventTracing-iOS/Classes/Core/*.h',
'EventTracing-iOS/Classes/Log/*.h',
'EventTracing-iOS/Classes/Output/Private/*.h',
'EventTracing-iOS/Classes/ParamGuard/Private/*.h',
'EventTracing-iOS/Classes/Refer/Private/*.h',
'EventTracing-iOS/Classes/Throttle/*.h',
'EventTracing-iOS/Classes/Traverser/*.h',
'EventTracing-iOS/Classes/Utils/Private/*.h',
'EventTracing-iOS/Classes/VTree/Private/*.h',
'EventTracing-iOS/Classes/VTree/Sync/*.h',
'EventTracing-iOS/Classes/VTree/Visible/*.h'
]
s.public_header_files = [
'EventTracing-iOS/Classes/Public/**/*.h',
'EventTracing-iOS/Classes/VTree/*.h',
'EventTracing-iOS/Classes/Refer/*.h',
'EventTracing-iOS/Classes/Output/*.h',
'EventTracing-iOS/Classes/Diff/*.h',
'EventTracing-iOS/Classes/ParamGuard/NEEventTracingParamGuardConfiguration.h',
'EventTracing-iOS/Classes/Exceptions/NEEventTracingExceptionDelegate.h',
'EventTracing-iOS/Classes/Utils/NSArray+ETEnumerator.h'
]
s.dependency 'JRSwizzle', '~> 1.0'
s.dependency 'BlocksKit', '~> 2.2.5'
end