-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCYToolkit.podspec
133 lines (106 loc) · 4.28 KB
/
CYToolkit.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
Pod::Spec.new do |s|
s.name = "CYToolkit"
s.version = "1.0.10"
s.summary = "CYToolkit"
s.description = "Used for APP based support, Based on YYCategories(But no relay on)"
s.homepage = "https://github.com/chrisYooh/CYToolkit.git"
s.license = "MIT"
s.author = { "Chris" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/chrisYooh/CYToolkit.git", :tag => s.version }
s.source_files = "CYToolkit/Classes/*"
s.public_header_files = "CYToolkit/Classes/*.h"
s.subspec 'CAAnimation' do |ss|
ss.source_files = "CYToolkit/Classes/CAAnimation/*"
ss.public_header_files = "CYToolkit/Classes/CAAnimation/*.h"
end
s.subspec 'CLLocation' do |ss|
ss.source_files = "CYToolkit/Classes/CLLocation/*"
ss.public_header_files = "CYToolkit/Classes/CLLocation/*.h"
end
s.subspec 'Compatible' do |ss|
ss.source_files = "CYToolkit/Classes/Compatible/*"
ss.public_header_files = "CYToolkit/Classes/Compatible/*.h"
end
s.subspec 'NSDate' do |ss|
ss.source_files = "CYToolkit/Classes/NSDate/*"
ss.public_header_files = "CYToolkit/Classes/NSDate/*.h"
end
s.subspec 'NSDecimalNumber' do |ss|
ss.source_files = "CYToolkit/Classes/NSDecimalNumber/*"
ss.public_header_files = "CYToolkit/Classes/NSDecimalNumber/*.h"
end
s.subspec 'NSObject' do |ss|
ss.source_files = "CYToolkit/Classes/NSObject/**/*"
ss.public_header_files = "CYToolkit/Classes/NSObject/**/*.h"
end
s.subspec 'NSString' do |ss|
ss.source_files = "CYToolkit/Classes/NSString/*"
ss.public_header_files = "CYToolkit/Classes/NSString/*.h"
ss.dependency "CYToolkit/NSDecimalNumber"
end
s.subspec 'UIButton' do |ss|
ss.source_files = "CYToolkit/Classes/UIButton/*"
ss.public_header_files = "CYToolkit/Classes/UIButton/*.h"
end
s.subspec 'UIColor' do |ss|
ss.source_files = "CYToolkit/Classes/UIColor/*"
ss.public_header_files = "CYToolkit/Classes/UIColor/*.h"
end
s.subspec 'UIDevice' do |ss|
ss.source_files = "CYToolkit/Classes/UIDevice/*"
ss.public_header_files = "CYToolkit/Classes/UIDevice/*.h"
end
s.subspec 'UIFont' do |ss|
ss.source_files = "CYToolkit/Classes/UIFont/*"
ss.public_header_files = "CYToolkit/Classes/UIFont/*.h"
end
s.subspec 'UIImage' do |ss|
ss.source_files = "CYToolkit/Classes/UIImage/**/*"
ss.public_header_files = "CYToolkit/Classes/UIImage/**/*.h"
end
s.subspec 'UIImageView' do |ss|
ss.source_files = "CYToolkit/Classes/UIImageView/**/*"
ss.public_header_files = "CYToolkit/Classes/UIImageView/**/*.h"
end
s.subspec 'UIView' do |ss|
ss.source_files = "CYToolkit/Classes/UIView/**/*"
ss.public_header_files = "CYToolkit/Classes/UIView/**/*.h"
end
s.subspec 'UIViewController' do |ss|
ss.source_files = "CYToolkit/Classes/UIViewController/*"
ss.public_header_files = "CYToolkit/Classes/UIViewController/*.h"
end
s.subspec 'UIWebView' do |ss|
ss.source_files = "CYToolkit/Classes/UIWebView/*"
ss.public_header_files = "CYToolkit/Classes/UIWebView/*.h"
end
s.subspec 'Tools' do |ss|
ss.subspec 'AudioTool' do |sss|
sss.source_files = "CYToolkit/Classes/Tools/AudioTool/**/*"
sss.public_header_files = "CYToolkit/Classes/Tools/AudioTool/**/*.h"
end
ss.subspec 'VideoTool' do |sss|
sss.source_files = "CYToolkit/Classes/Tools/VideoTool/**/*"
sss.public_header_files = "CYToolkit/Classes/Tools/VideoTool/**/*.h"
end
ss.subspec 'TTS' do |sss|
sss.source_files = "CYToolkit/Classes/Tools/TTS(Text To Speech)/**/*"
sss.public_header_files = "CYToolkit/Classes/Tools/TTS(Text To Speech)/**/*.h"
end
ss.subspec 'ASR' do |sss|
sss.source_files = "CYToolkit/Classes/Tools/ASR(Automatic Speech Recognition)/**/*"
sss.public_header_files = "CYToolkit/Classes/Tools/ASR(Automatic Speech Recognition)/**/*.h"
end
ss.dependency "CYToolkit/Compatible"
ss.dependency "CYToolkit/UIImage"
end
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "z"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end