forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost-server.gyp
More file actions
51 lines (46 loc) · 725 Bytes
/
host-server.gyp
File metadata and controls
51 lines (46 loc) · 725 Bytes
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
{
'include':
[
'../common.gypi',
],
'targets':
[
{
'target_name': 'host-server',
'type': 'none',
'toolsets': ['host', 'target'],
'conditions':
[
[
'cross_compile != 0',
{
'dependencies':
[
'engine.gyp:server#host',
],
'direct_dependent_settings':
{
'variables':
{
'engine': '<(PRODUCT_DIR)/server-community-host>(exe_suffix)'
},
},
},
{
'dependencies':
[
'engine.gyp:server#target',
],
'direct_dependent_settings':
{
'variables':
{
'engine': '<(PRODUCT_DIR)/server-community>(exe_suffix)',
},
},
},
],
],
},
],
}