mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 19:47:31 +00:00
c31d81da26
* support for static build * improved sharard/static build
19 lines
276 B
Meson
19 lines
276 B
Meson
files=[
|
|
'http.c',
|
|
'http_server.c',
|
|
'proc.c',
|
|
'r2pipe.c',
|
|
'rap_server.c',
|
|
'run.c',
|
|
'socket.c',
|
|
'serial.c',
|
|
]
|
|
|
|
r_socket = library('r_socket', files,
|
|
include_directories: [platform_inc],
|
|
dependencies: [utl],
|
|
link_with: [r_util],
|
|
c_args : '-DCORELIB=1',
|
|
install: true
|
|
)
|