-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCCTestTwo.podspec
More file actions
45 lines (24 loc) · 978 Bytes
/
CCTestTwo.podspec
File metadata and controls
45 lines (24 loc) · 978 Bytes
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
Pod::Spec.new do |s|
s.name = "CCTestTwo"
s.version = "0.0.1"
s.summary = "A short description of CCTestTwo."
s.description = <<-DESC
first demo
DESC
s.homepage = "http://github.com"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "wangsen" => "[email protected]" }
s.platform = :ios, "9.0"
s.source = { :git => "[email protected]:WSenOS/CCTestTwoDemo.git", :tag => "#{s.version}" }
s.source_files = "CCTestTwo/*.{h,m}"
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
s.resources = "CCTestTwo/Resources.bundle"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.frameworks = "UIKit", "Foundation"
# s.library = "iconv"
s.libraries = "iconv", "xml2"
# s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end