-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKXJsonUI.podspec
More file actions
28 lines (22 loc) · 854 Bytes
/
KXJsonUI.podspec
File metadata and controls
28 lines (22 loc) · 854 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
Pod::Spec.new do |s|
s.name = "KXJsonUI"
s.version = "0.8.4"
s.homepage = "https://github.com/kxzen/KXJsonUI_ios"
s.summary = "powerful Json UI layout framework for iOS"
s.author = { 'kxzen' => 'kevinapp38@gmail.com' }
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/kxzen/KXJsonUI_ios.git", :tag => s.version }
s.requires_arc = true
s.source_files = 'KXJsonUI_ios/KXJsonUI_ios/**/*.{h,m,mm}'
s.public_header_files = 'KXJsonUI_ios/KXJsonUI_ios/**/*.h'
s.private_header_files = 'KXJsonUI_ios/KXJsonUI_ios/Private/**/*.h'
s.frameworks = 'UIKit', 'QuartzCore'
s.requires_arc = true
s.library = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end