mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
meson: convert io directory to Meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5582c58f82
commit
7fcfd45666
6 changed files with 28 additions and 15 deletions
25
io/meson.build
Normal file
25
io/meson.build
Normal file
|
@ -0,0 +1,25 @@
|
|||
io_ss = ss.source_set()
|
||||
io_ss.add(genh)
|
||||
io_ss.add(files(
|
||||
'channel-buffer.c',
|
||||
'channel-command.c',
|
||||
'channel-file.c',
|
||||
'channel-socket.c',
|
||||
'channel-tls.c',
|
||||
'channel-util.c',
|
||||
'channel-watch.c',
|
||||
'channel-websock.c',
|
||||
'channel.c',
|
||||
'dns-resolver.c',
|
||||
'net-listener.c',
|
||||
'task.c',
|
||||
))
|
||||
|
||||
io_ss = io_ss.apply(config_host, strict: false)
|
||||
libio = static_library('io', io_ss.sources() + genh,
|
||||
dependencies: [io_ss.dependencies()],
|
||||
link_with: libqemuutil,
|
||||
name_suffix: 'fa',
|
||||
build_by_default: false)
|
||||
|
||||
io = declare_dependency(link_whole: libio, dependencies: [crypto, qom])
|
Loading…
Add table
Add a link
Reference in a new issue