Uh oh!
There was an error while loading. Please reload this page.
forked from TextureGroup/Texture
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTexture.podspec
More file actions
Latest commit
66 lines (55 loc) · 2.26 KB
/
Copy pathTexture.podspec
File metadata and controls
66 lines (55 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Pod::Spec.newdo |spec|
spec.name='Texture'
spec.version='2.6'
spec.license={:type=>'BSD and Apache 2',}
spec.homepage='http://texturegroup.org'
spec.authors={'Huy Nguyen'=>'huy@pinterest.com','Garrett Moon'=>'garrett@excitedpixel.com','Scott Goodson'=>'scottgoodson@gmail.com','Michael Schneider'=>'schneider@pinterest.com','Adlai Holler'=>'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.header_dir='AsyncDisplayKit'
spec.documentation_url='http://texturegroup.org/appledoc/'
spec.ios.weak_frameworks='AssetsLibrary'
spec.weak_frameworks='Photos','MapKit'
spec.ios.deployment_target='9.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/**/*.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',
]
end
spec.subspec'PINRemoteImage'do |pin|
pin.dependency'PINRemoteImage/iOS','= 3.0.0-beta.13'
pin.dependency'PINRemoteImage/PINCache'
pin.dependency'Texture/Core'
end
spec.subspec'IGListKit'do |igl|
igl.dependency'IGListKit','~> 3.0'
igl.dependency'Texture/Core'
end
spec.subspec'Yoga'do |yoga|
yoga.xcconfig={'GCC_PREPROCESSOR_DEFINITIONS'=>'$(inherited) YOGA=1'}
yoga.dependency'Yoga','1.6.0'
yoga.dependency'Texture/Core'
end
# Include optional PINRemoteImage module
spec.default_subspec='PINRemoteImage'
spec.social_media_url='https://twitter.com/TextureiOS'
spec.library='c++'
end