mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
24 lines
369 B
Meson
24 lines
369 B
Meson
files=[
|
|
'bp.c',
|
|
'bp_io.c',
|
|
'bp_plugin.c',
|
|
'bp_traptrace.c',
|
|
'bp_watch.c',
|
|
'p/bp_arm.c',
|
|
'p/bp_bf.c',
|
|
'p/bp_mips.c',
|
|
'p/bp_ppc.c',
|
|
'p/bp_sh.c',
|
|
'p/bp_x86.c'
|
|
]
|
|
|
|
r_bp = shared_library('r_bp', files,
|
|
include_directories: include_directories([
|
|
'../include', '../../build'],
|
|
platform_librinc
|
|
),
|
|
c_args: ['-DCORELIB'],
|
|
link_with: [r_util],
|
|
install: true
|
|
)
|