mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 08:01:04 +00:00
30 lines
504 B
Meson
30 lines
504 B
Meson
files=[
|
|
'egg.c',
|
|
'egg_lang.c',
|
|
'emit_arm.c',
|
|
'emit_trace.c',
|
|
'emit_x64.c',
|
|
'emit_x86.c',
|
|
|
|
#'p/egg_bind.c',
|
|
#'p/egg_cb.c',
|
|
'p/egg_exec.c',
|
|
#'p/egg_reverse.c',
|
|
#'p/egg_shya.c',
|
|
'p/egg_xor.c'
|
|
]
|
|
|
|
r_egg = shared_library('r_egg', files,
|
|
include_directories: include_directories([
|
|
'../include',
|
|
platform_librinc
|
|
]),
|
|
c_args : ['-DCORELIB=1', '-I' + meson.current_build_dir() + '/../..'],
|
|
link_with: [r_util, r_asm, r_syscall],
|
|
objects: [
|
|
libr2sdb.extract_all_objects(),
|
|
],
|
|
install: true
|
|
)
|
|
|