-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathmeson.build
31 lines (28 loc) · 871 Bytes
/
meson.build
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
# SPDX-FileCopyrightText: 2023 Giovanni Dante Grazioli <deroad@libero.it>
# SPDX-License-Identifier: BSD-3-Clause
r2dec_plugin = 'r2dec-plugin.js'
r2dec_testsuite = 'r2dec-testsuite.js'
if get_option('standalone')
bytecode_h = custom_target(
'bytecode.h',
build_always_stale: true,
output : 'bytecode.h',
input : r2dec_testsuite,
command : [qjsc, '-m', '-N', 'main_bytecode', '-o', '@OUTPUT@', '@INPUT@'],
)
else
bytecode_h = custom_target(
'bytecode.h',
build_always_stale: true,
output : 'bytecode.h',
input : r2dec_plugin,
command : [qjsc, '-m', '-N', 'main_bytecode', '-o', '@OUTPUT@', '@INPUT@'],
)
endif
bytecode_mod_h = custom_target(
'bytecode_mod.h',
build_always_stale: true,
output : 'bytecode_mod.h',
input : bytecode_h,
command : [modjs_gen, '@INPUT@', '@OUTPUT@'],
)