FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AsyncDisplayKit/AsyncDisplayKit.podspec at master · OctoberFour/AsyncDisplayKit · GitHub
OctoberFour
/
AsyncDisplayKit
Public
forked from
facebookarchive/AsyncDisplayKit
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (37 loc) · 1.37 KB
Breadcrumbs
AsyncDisplayKit
/
AsyncDisplayKit.podspec
Copy path
File metadata and controls
43 lines (37 loc) · 1.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Pod
::
Spec
.
new
do
|
spec
|
spec
.
name
=
'AsyncDisplayKit'
spec
.
version
=
'1.0'
spec
.
license
=
{
:type
=>
'BSD'
}
spec
.
homepage
=
'http://asyncdisplaykit.org'
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.0'
}
spec
.
documentation_url
=
'http://asyncdisplaykit.org/appledoc/'
spec
.
public_header_files
=
[
'AsyncDisplayKit/*.h'
,
'AsyncDisplayKit/Details/**/*.h'
,
'Base/*.h'
]
spec
.
source_files
=
[
'AsyncDisplayKit/**/*.{h,m,mm}'
,
'Base/*.{h,m}'
]
# ASDealloc2MainObject must be compiled with MRR
spec
.
requires_arc
=
true
spec
.
exclude_files
=
[
'AsyncDisplayKit/Details/ASDealloc2MainObject.m'
]
spec
.
subspec
'ASDealloc2MainObject'
do
|
mrr
|
mrr
.
requires_arc
=
false
mrr
.
source_files
=
[
'AsyncDisplayKit/Private/_AS-objc-internal.h'
,
'AsyncDisplayKit/Details/ASDealloc2MainObject.h'
,
'AsyncDisplayKit/Details/ASDealloc2MainObject.m'
,
]
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
Back
|
FazBrowse Home
|
New Git URL