mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 18:32:56 +00:00
17 lines
245 B
Meson
17 lines
245 B
Meson
files=[
|
|
'lang.c',
|
|
'p/c.c',
|
|
# 'p/cpipe.c',
|
|
'p/lib.c',
|
|
'p/pipe.c',
|
|
'p/rust.c',
|
|
'p/vala.c'
|
|
]
|
|
|
|
r_lang = shared_library('r_lang', files,
|
|
include_directories: [platform_inc],
|
|
c_args: ['-DCORELIB'],
|
|
link_with: [r_util, r_cons],
|
|
install: true
|
|
)
|