This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathlivecode.gyp
More file actions
86 lines (76 loc) · 1.66 KB
/
livecode.gyp
File metadata and controls
86 lines (76 loc) · 1.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
'includes':
[
'common.gypi',
],
'targets':
[
{
'target_name': 'LiveCode-all',
'type': 'none',
'dependencies':
[
# Engines
'engine/engine.gyp:standalone',
# The revsecurity library is an output and not an intermediate product
'thirdparty/libopenssl/libopenssl.gyp:revsecurity',
# Externals
'revdb/revdb.gyp:revdb',
'revdb/revdb.gyp:dbmysql',
'revdb/revdb.gyp:dbsqlite',
'revpdfprinter/revpdfprinter.gyp:revpdfprinter',
'revxml/revxml.gyp:revxml',
'revzip/revzip.gyp:revzip',
],
'conditions':
[
[
'mobile == 0',
{
'dependencies':
[
# Engines
'engine/engine.gyp:development',
'engine/engine.gyp:installer',
'engine/engine.gyp:server',
# Externals
'revbrowser/revbrowser.gyp:revbrowser',
'revbrowser/revbrowser.gyp:revbrowser-cefprocess',
'revdb/revdb.gyp:dbodbc',
'revdb/revdb.gyp:dbpostgresql',
'revfont/revfont.gyp:revfont',
'revmobile/revmobile.gyp:revandroid',
'revmobile/revmobile.gyp:reviphone',
'revspeech/revspeech.gyp:revspeech',
'revvideograbber/revvideograbber.gyp:revvideograbber',
# Server externals
'revdb/revdb.gyp:revdb-server',
],
},
],
[
'OS == "ios"',
{
'dependencies':
[
'engine/engine.gyp:standalone-mobile-lib-community',
],
},
],
],
},
{
'target_name': 'binzip-copy',
'type': 'none',
'dependencies':
[
'LiveCode-all',
],
'copies':
[{
'destination': '<(output_dir)',
'files': [ '>@(dist_files)' ],
}],
},
],
}