rizin/examples/meson.build
Maijin d28ddde0e7
doc(syscall): improve README and add example (#5135) (#5619)
Co-authored-by: Maijin <maijin21@gmail.com>
2025-12-15 14:02:55 +08:00

13 lines
354 B
Meson

if get_option('enable_examples')
executable('md5', 'api/hash/md5.c',
include_directories: [platform_inc],
dependencies: [rz_hash_dep],
install: false
)
executable('linux_x64', 'api/syscall/linux_x64.c',
include_directories: [platform_inc],
dependencies: [rz_syscall_dep, rz_util_dep],
install: false
)
endif