mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-16 10:38:45 +00:00
19 lines
244 B
Meson
19 lines
244 B
Meson
files=[
|
|
'arena.c',
|
|
'cond.c',
|
|
'double.c',
|
|
'profile.c',
|
|
'reg.c',
|
|
'value.c',
|
|
]
|
|
|
|
r_reg = shared_library('r_reg', files,
|
|
include_directories: include_directories([
|
|
'../include',
|
|
platform_librinc
|
|
]),
|
|
link_with: [r_util],
|
|
install: true
|
|
)
|
|
|