mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
c31d81da26
* support for static build * improved sharard/static build
17 lines
238 B
Meson
17 lines
238 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 = library('r_lang', files,
|
|
include_directories: [platform_inc],
|
|
c_args: ['-DCORELIB'],
|
|
link_with: [r_util, r_cons],
|
|
install: true
|
|
)
|