diff options
| author | Marc-André Lureau | 2019-07-12 20:11:20 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2020-08-21 12:30:10 +0200 |
| commit | 32fcc6244c729f6311d2a4c8bd54bb9b7f43786d (patch) | |
| tree | ed58d522438027425b211f8c3894f8c2705ca081 /contrib | |
| parent | contrib/rdmacm-mux: convert to Meson (diff) | |
| download | qemu-32fcc6244c729f6311d2a4c8bd54bb9b7f43786d.tar.gz qemu-32fcc6244c729f6311d2a4c8bd54bb9b7f43786d.tar.xz qemu-32fcc6244c729f6311d2a4c8bd54bb9b7f43786d.zip | |
contrib/vhost-user-input: convert to meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/vhost-user-input/Makefile.objs | 1 | ||||
| -rw-r--r-- | contrib/vhost-user-input/meson.build | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/vhost-user-input/Makefile.objs b/contrib/vhost-user-input/Makefile.objs deleted file mode 100644 index b1fad90d51..0000000000 --- a/contrib/vhost-user-input/Makefile.objs +++ /dev/null @@ -1 +0,0 @@ -vhost-user-input-obj-y = main.o diff --git a/contrib/vhost-user-input/meson.build b/contrib/vhost-user-input/meson.build new file mode 100644 index 0000000000..1eeb1329d9 --- /dev/null +++ b/contrib/vhost-user-input/meson.build @@ -0,0 +1,5 @@ +executable('vhost-user-input', files('main.c'), + link_with: libvhost_user, + dependencies: qemuutil, + build_by_default: targetos == 'linux', + install: false) |
