mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:17 +00:00
After the introduction of vhost-user-bridge and libvhost-user, we formed the convention of placing vhost-user daemons in eponymous subdirs of contrib/. Follow this convention. Create a contrib/vhost-user-bridge/ directory and move vhost-user-bridge into it. Extract its build target definition from tests/meson.build into the new directory, and include its subdir in the root-level meson.build. Add a section about it in the "vhost-user daemons in contrib" document. Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Yodel Eldar <yodel.eldar@yodel.dev> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20260129133049.119829-2-yodel.eldar@yodel.dev>
5 lines
194 B
Meson
5 lines
194 B
Meson
if have_tools and have_vhost_user and host_os == 'linux'
|
|
executable('vhost-user-bridge', files('vhost-user-bridge.c'),
|
|
dependencies: [qemuutil, vhost_user], install: false)
|
|
endif
|