rizin/binrz/blob/meson.build
Riccardo Schirone 3a3e21ce2d Define rizin_exe also when using blob feature
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.
2021-07-05 09:26:54 +02:00

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')