FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
livecode/libscript/libscript.gyp at develop · livecode/livecode · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
livecode
/
livecode
Public archive
Notifications
You must be signed in to change notification settings
Fork
223
Star
517
Code
Pull requests
189
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
livecode
/
libscript
/
libscript.gyp
Copy path
More file actions
More file actions
Latest commit
History
History
History
147 lines (129 loc) · 2.21 KB
Breadcrumbs
livecode
/
libscript
/
libscript.gyp
Copy path
File metadata and controls
147 lines (129 loc) · 2.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
'includes'
:
[
'../common.gypi'
,
'stdscript-sources.gypi'
,
],
'variables'
:
{
'libscript_public_headers'
:
[
'include/libscript/script.h'
,
'include/libscript/script-auto.h'
,
],
'libscript_private_headers'
:
[
'src/script-private.h'
,
'src/script-bytecode.hpp'
,
'src/script-execute.hpp'
,
'src/script-validate.hpp'
,
],
'libscript_sources'
:
[
'src/script-builder.cpp'
,
'src/script-instance.cpp'
,
'src/script-module.cpp'
,
'src/script-object.cpp'
,
'src/script-package.cpp'
,
'src/script-execute.cpp'
,
'src/script-execute-objc.mm'
,
'src/script-error.cpp'
,
],
},
'targets'
:
[
{
'target_name'
:
'libScript'
,
'type'
:
'static_library'
,
'toolsets'
: [
'host'
,
'target'
],
'product_prefix'
:
''
,
'product_name'
:
'libScript'
,
'dependencies'
:
[
'../libfoundation/libfoundation.gyp:libFoundation'
,
'../prebuilt/thirdparty.gyp:thirdparty_prebuilt_ffi'
,
],
'include_dirs'
:
[
'include'
,
'src'
,
],
'sources'
:
[
'<@(libscript_public_headers)'
,
'<@(libscript_private_headers)'
,
'<@(libscript_sources)'
,
],
'direct_dependent_settings'
:
{
'include_dirs'
:
[
'include'
,
],
},
'conditions'
:
[
[
'OS != "mac" and OS != "ios"'
,
{
'sources!'
:
[
'src/script-execute-objc.mm'
,
],
},
],
[
'OS == "linux" or OS == "android"'
,
{
'link_settings'
:
{
'libraries'
:
[
'-ldl'
,
],
},
},
],
],
'target_conditions'
:
[
[
'_toolset != "target"'
,
{
'product_name'
:
'libScript->(_toolset)'
,
},
],
],
},
{
'target_name'
:
'stdscript'
,
'type'
:
'static_library'
,
'toolsets'
: [
'host'
,
'target'
],
'product_prefix'
:
''
,
'product_name'
:
'stdscript'
,
'dependencies'
:
[
'libScript'
,
'../libfoundation/libfoundation.gyp:libFoundation'
,
],
'include_dirs'
:
[
'include'
,
'src'
,
],
'sources'
:
[
'<@(stdscript_sources)'
,
],
'target_conditions'
:
[
[
'_toolset != "target"'
,
{
'product_name'
:
'stdscript->(_toolset)'
,
},
],
],
},
],
}
Back
|
FazBrowse Home
|
New Git URL