forked from facebook/componentkit
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathComponentKit.podspec
More file actions
Latest commit
24 lines (23 loc) · 814 Bytes
/
Copy pathComponentKit.podspec
File metadata and controls
24 lines (23 loc) · 814 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
Pod::Spec.newdo |s|
s.name='ComponentKit'
s.version='0.30'
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/**/*'
s.exclude_files=['ComponentKit/Info.plist']
s.frameworks='UIKit','CoreText'
s.library='c++'
s.xcconfig={
'CLANG_CXX_LANGUAGE_STANDARD'=>'gnu++14',
'CLANG_CXX_LIBRARY'=>'libc++',
}
s.dependency'RenderCore',s.version.to_s
s.dependency'ComponentTextKit',s.version.to_s
s.dependency'Yoga','~> 1.14'
end