1 Star 0 Fork 0

MarkLewis/AsyncDisplayKit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AsyncDisplayKit.podspec 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
Nadine Salter 提交于 2014-06-27 13:32 +08:00 . Initial commit.
Pod::Spec.new do |spec|
spec.name = 'AsyncDisplayKit'
spec.version = '1.0beta'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/facebook/AsyncDisplayKit'
spec.authors = { 'Nadine Salter' => 'nadi@fb.com', 'Scott Goodson' => 'scottg@fb.com' }
spec.summary = 'Smooth asynchronous user interfaces for iOS apps.'
spec.source = { :git => 'https://github.com/facebook/AsyncDisplayKit.git', :tag => '1.0beta' }
# these files mustn't be compiled with ARC enabled
mrr_source_files = [
'AsyncDisplayKit/ASDisplayNode.mm',
'AsyncDisplayKit/ASControlNode.m',
'AsyncDisplayKit/ASImageNode.mm',
'AsyncDisplayKit/Details/_ASDisplayView.mm',
'AsyncDisplayKit/Private/_ASPendingState.m',
]
spec.public_header_files = [
'AsyncDisplayKit/*.h',
'AsyncDisplayKit/Details/**/*.h',
'Base/*.h'
]
spec.source_files = ['AsyncDisplayKit/**/*.{h,m,mm}', 'Base/*.{h,m}']
spec.exclude_files = mrr_source_files
spec.requires_arc = true
spec.subspec 'no-arc' do |mrr|
mrr.requires_arc = false
mrr.source_files = mrr_source_files
end
spec.social_media_url = 'https://twitter.com/fbOpenSource'
spec.library = 'c++'
spec.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
spec.ios.deployment_target = '7.0'
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Objective-C
1
https://gitee.com/marklewis/AsyncDisplayKit.git
git@gitee.com:marklewis/AsyncDisplayKit.git
marklewis
AsyncDisplayKit
AsyncDisplayKit
feature/v1MRC

搜索帮助