Unit tests need the path of the rizin executable to properly run in some cases, thus define rizin_exe variable both in regular build and when rizin is built with -Dblob=true.
12 lines
275 B
Meson
12 lines
275 B
Meson
rizin_exe = executable('rizin', 'main.c',
|
|
include_directories: [platform_inc],
|
|
dependencies: [
|
|
rz_main_dep,
|
|
rz_util_dep,
|
|
],
|
|
install: true,
|
|
install_rpath: rpath_exe,
|
|
implicit_include_directories: false
|
|
)
|
|
|
|
meson.add_install_script('meson_install_links.sh')
|