diff options
author | Paolo Bonzini | 2020-02-05 09:44:24 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-08-21 12:30:08 +0200 |
commit | 931049b46cb58a499a36d8a1d0ac3f7b334e0876 (patch) | |
tree | 098ebbc39c46194a50060a5f2155546f78df9fe2 /contrib/libvhost-user/meson.build | |
parent | meson: add version.o (diff) | |
download | qemu-931049b46cb58a499a36d8a1d0ac3f7b334e0876.tar.gz qemu-931049b46cb58a499a36d8a1d0ac3f7b334e0876.tar.xz qemu-931049b46cb58a499a36d8a1d0ac3f7b334e0876.zip |
contrib/libvhost-user: convert to Meson
Since libqemuutil.a has been converted to Meson, the conversion is
straightforward.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'contrib/libvhost-user/meson.build')
-rw-r--r-- | contrib/libvhost-user/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/libvhost-user/meson.build b/contrib/libvhost-user/meson.build new file mode 100644 index 0000000000..e68dd1a581 --- /dev/null +++ b/contrib/libvhost-user/meson.build @@ -0,0 +1,3 @@ +libvhost_user = static_library('vhost-user', + files('libvhost-user.c', 'libvhost-user-glib.c'), + build_by_default: false) |