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
Latest commit
22 lines (22 loc) · 664 Bytes
/
Copy pathComponentKit.podspec
File metadata and controls
22 lines (22 loc) · 664 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.newdo |s|
s.name="ComponentKit"
s.version="0.12"
s.summary="A React-inspired view framework for iOS"
s.homepage="https://componentkit.org"
s.authors='adamjernst@fb.com'
s.license='BSD'
s.source={
:git=>"https://github.com/facebook/ComponentKit.git",
:tag=>s.version.to_s
}
s.social_media_url='https://twitter.com/componentkit'
s.platform=:ios,'7.0'
s.requires_arc=true
s.source_files='ComponentKit/**/*','ComponentTextKit/**/*'
s.frameworks='UIKit','CoreText'
s.library='c++'
s.xcconfig={
'CLANG_CXX_LANGUAGE_STANDARD'=>'c++11',
'CLANG_CXX_LIBRARY'=>'libc++',
}
end