forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.gyp
More file actions
111 lines (100 loc) · 2.35 KB
/
extensions.gyp
File metadata and controls
111 lines (100 loc) · 2.35 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
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
{
'includes':
[
'../common.gypi',
],
'targets':
[
{
'target_name': 'extensions',
'type': 'none',
'dependencies':
[
'../toolchain/lc-compile/lc-compile.gyp:lc-compile',
'../engine/lcb-modules.gyp:engine_lcb_modules',
],
'sources':
[
'libraries/canvas/canvas.lcb',
'libraries/iconsvg/iconsvg.lcb',
'libraries/json/json.lcb',
'widgets/button/button.lcb',
#'widgets/button-popup/button-popup.lcb',
#’widgets/chart/chart.lcb',
'widgets/checkbox/checkbox.lcb',
'widgets/clock/clock.lcb',
'widgets/graph/graph.lcb',
'widgets/header/header.lcb',
'widgets/iconpicker/iconpicker.lcb',
#’widgets/list/list.lcb',
#’widgets/multilist/multilist.lcb',
'widgets/navbar/navbar.lcb',
'widgets/paletteactions/paletteactions.lcb',
#’widgets/pinkcircle/pinkcircle.lcb',
'widgets/progressbar/progressbar.lcb',
'widgets/radiobutton/radiobutton.lcb',
'widgets/segmented/segmented.lcb',
#'widgets/segmented-popup/segmented-popup.lcb',
'widgets/selector/selector.lcb',
'widgets/svgpath/svgpath.lcb',
'widgets/switchbutton/switchbutton.lcb',
'widgets/treeview/treeview.lcb',
'widgets/colorswatch/colorswatch.lcb',
'widgets/gradientrampeditor/gradientrampeditor.lcb',
],
'all_dependent_settings':
{
'variables':
{
'dist_aux_files':
[
# Gyp will only use a recursive xcopy on Windows if the path ends with '/'
'<(PRODUCT_DIR)/packaged_extensions/',
],
},
},
'actions':
[
{
'action_name': 'build_extensions',
'inputs':
[
'../util/build-extensions.sh',
'<@(_sources)',
],
'outputs':
[
'<(PRODUCT_DIR)/packaged_extensions',
],
'message': 'Building extensions',
'conditions':
[
[
'OS == "win"',
{
'variables':
{
'build_command': [ '$(ProjectDir)../../../util/invoke-unix.bat', '$(ProjectDir)../../../util/build-extensions.sh' ],
},
},
{
'variables':
{
'build_command': [ '../util/build-extensions.sh' ],
},
},
],
],
'action':
[
'<@(build_command)',
'<(PRODUCT_DIR)/packaged_extensions',
'<(PRODUCT_DIR)/modules/lci',
'>(lc-compile_host)',
'<@(_sources)',
],
},
],
},
],
}