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
|
subdir('epp')
edje_bin_deps = [
eina, eo, efl, m,
luajit, eet, evas,
ecore_file, ecore_input,
ecore_imf, ecore_imf_evas,
embryo, efreet, eio,
edje, ecore_evas
]
edje_cc_src = [
'edje_multisense_convert.h',
'edje_cc.h',
'edje_cc.c',
'edje_cc_out.c',
'edje_cc_parse.c',
'edje_cc_mem.c',
'edje_cc_handlers.c',
'edje_cc_sources.c',
'edje_cc_script.c',
'edje_multisense_convert.c'
]
edje_cc = executable('edje_cc',
edje_cc_src,
dependencies: [edje_bin_deps, eet, ecore_evas, ecore_file],
install: true,
c_args : package_c_args,
link_args : bin_linker_args
)
edje_decc_src = [
'edje_decc.c',
'edje_decc.h',
'edje_cc_mem.c',
'edje_cc_sources.c',
]
edje_decc = executable('edje_decc',
edje_decc_src,
dependencies: [edje_bin_deps, eet, ecore_file, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_player = executable('edje_player',
'edje_player.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_inspector = executable('edje_inspector',
'edje_inspector.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_external_inspector = executable('edje_external_inspector',
'edje_external_inspector.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_codegen = executable('edje_codegen',
'edje_codegen.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_pick = executable('edje_pick',
'edje_pick.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
edje_watch = executable('edje_watch',
'edje_watch.c',
dependencies: [edje_bin_deps, eet, ecore, eio, ecore_evas],
install: true,
c_args : package_c_args,
)
|