forked from facebook/componentkit
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathComponentTextKit.podspec
More file actions
Latest commit
19 lines (18 loc) · 581 Bytes
/
Copy pathComponentTextKit.podspec
File metadata and controls
19 lines (18 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name='ComponentTextKit'
s.version='0.30'
s.license='BSD'
s.summary='Base text library for ComponentKit'
s.homepage='https://componentkit.org'
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='ComponentTextKit/**/*.{h,m,mm}'
s.frameworks='UIKit'
s.library='c++'
s.xcconfig={
'CLANG_CXX_LANGUAGE_STANDARD'=>'gnu++14',
'CLANG_CXX_LIBRARY'=>'libc++',
}
end