mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-27 08:27:53 +00:00
Texture Podspec
This commit is contained in:
73
Texture.podspec
Normal file
73
Texture.podspec
Normal file
@@ -0,0 +1,73 @@
|
||||
Pod::Spec.new do |spec|
|
||||
spec.name = 'Texture'
|
||||
spec.version = '2.2'
|
||||
spec.license = { :type => 'BSD' }
|
||||
spec.homepage = 'http://asyncdisplaykit.org'
|
||||
spec.authors = { 'Huy Nguyen' => 'huy@pinterest.com', 'Garrett Moon' => 'garrett@excitedpixel.com', 'Scott Goodson' => 'scottgoodson@gmail.com', 'Michael Schneider' => 'schneider@pinterest.com', 'Adlai Hollar' => 'adlai@pinterest.com' }
|
||||
spec.summary = 'Smooth asynchronous user interfaces for iOS apps.'
|
||||
spec.source = { :git => 'https://github.com/TextureGroup/Texture.git', :tag => spec.version.to_s }
|
||||
spec.module_name = 'AsyncDisplayKit'
|
||||
|
||||
spec.documentation_url = 'http://asyncdisplaykit.org/appledoc/'
|
||||
|
||||
spec.weak_frameworks = 'Photos','MapKit','AssetsLibrary'
|
||||
spec.requires_arc = true
|
||||
|
||||
spec.ios.deployment_target = '8.0'
|
||||
|
||||
# Uncomment when fixed: issues with tvOS build for release 2.0
|
||||
# spec.tvos.deployment_target = '9.0'
|
||||
|
||||
# Subspecs
|
||||
spec.subspec 'Core' do |core|
|
||||
core.public_header_files = [
|
||||
'Source/*.h',
|
||||
'Source/Details/**/*.h',
|
||||
'Source/Layout/**/*.h',
|
||||
'Source/Base/*.h',
|
||||
'Source/Debug/AsyncDisplayKit+Debug.h',
|
||||
'Source/TextKit/ASTextNodeTypes.h',
|
||||
'Source/TextKit/ASTextKitComponents.h'
|
||||
]
|
||||
|
||||
core.source_files = [
|
||||
'Source/**/*.{h,m,mm}',
|
||||
'Base/*.{h,m}',
|
||||
|
||||
# Most TextKit components are not public because the C++ content
|
||||
# in the headers will cause build errors when using
|
||||
# `use_frameworks!` on 0.39.0 & Swift 2.1.
|
||||
# See https://github.com/facebook/AsyncDisplayKit/issues/1153
|
||||
'Source/TextKit/*.h',
|
||||
]
|
||||
core.xcconfig = { 'GCC_PRECOMPILE_PREFIX_HEADER' => 'YES' }
|
||||
end
|
||||
|
||||
spec.subspec 'PINRemoteImage' do |pin|
|
||||
pin.dependency 'PINRemoteImage/iOS', '= 3.0.0-beta.9'
|
||||
pin.dependency 'PINRemoteImage/PINCache'
|
||||
pin.dependency 'Texture/Core'
|
||||
end
|
||||
|
||||
spec.subspec 'IGListKit' do |igl|
|
||||
igl.dependency 'IGListKit', '2.1.0'
|
||||
igl.dependency 'Texture/Core'
|
||||
end
|
||||
|
||||
spec.subspec 'Yoga' do |yoga|
|
||||
yoga.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) YOGA=1' }
|
||||
yoga.dependency 'Yoga', '1.0.2'
|
||||
yoga.dependency 'Texture/Core'
|
||||
end
|
||||
|
||||
# Include optional PINRemoteImage module
|
||||
spec.default_subspec = 'PINRemoteImage'
|
||||
|
||||
spec.social_media_url = 'https://twitter.com/AsyncDisplayKit'
|
||||
spec.library = 'c++'
|
||||
spec.pod_target_xcconfig = {
|
||||
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
|
||||
'CLANG_CXX_LIBRARY' => 'libc++'
|
||||
}
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user