forked from facebook/componentkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentKit.podspec
More file actions
22 lines (22 loc) · 780 Bytes
/
ComponentKit.podspec
File metadata and controls
22 lines (22 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'ComponentKit'
s.version = '0.20'
s.license = 'BSD'
s.summary = 'A React-inspired view framework for iOS'
s.homepage = 'https://componentkit.org'
s.social_media_url = 'https://twitter.com/componentkit'
s.authors = 'adamjernst@fb.com'
s.source = { :git => 'https://github.com/facebook/ComponentKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.1'
s.requires_arc = true
s.source_files = 'ComponentKit/**/*', 'ComponentTextKit/**/*'
s.frameworks = 'UIKit', 'CoreText'
s.library = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++14',
'CLANG_CXX_LIBRARY' => 'libc++',
}
s.dependency 'OCMock', '~> 3.4'
s.dependency 'FBSnapshotTestCase', '~> 2.1.4'
s.dependency 'Yoga', '~> 1.6.0'
end