[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/12] vhost-user-video: add meson subdir build logic
From: |
Albert Esteve |
Subject: |
[PATCH 04/12] vhost-user-video: add meson subdir build logic |
Date: |
Wed, 22 Mar 2023 15:21:24 +0100 |
From: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Albert Esteve <aesteve@redhat.com>
---
tools/meson.build | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tools/meson.build b/tools/meson.build
index e69de29bb2..737f7dc140 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -0,0 +1,7 @@
+have_virtiovideo = (targetos == 'linux' and
+ have_tools and
+ have_vhost_user)
+
+if have_virtiovideo
+ subdir('vhost-user-video')
+endif
--
2.39.2
- [PATCH 00/12] [RFC PATCHv2] Add vhost-user Video decode, Albert Esteve, 2023/03/22
- [PATCH 01/12] docs: Add a vhost-virtio-video rst file, Albert Esteve, 2023/03/22
- [PATCH 02/12] MAINTAINERS: Add virtio-video section, Albert Esteve, 2023/03/22
- [PATCH 04/12] vhost-user-video: add meson subdir build logic,
Albert Esteve <=
- [PATCH 05/12] standard-headers: Add virtio_video.h, Albert Esteve, 2023/03/22
- [PATCH 06/12] hw/display: add vhost-user-video-pci, Albert Esteve, 2023/03/22
- [PATCH 03/12] vhost-user-video: boiler plate code for vhost-user-video device, Albert Esteve, 2023/03/22
- [PATCH 07/12] vhost-user.json: add video type, Albert Esteve, 2023/03/22
- [PATCH 09/12] tests/qtest: add virtio-video test, Albert Esteve, 2023/03/22
- [PATCH 08/12] tools/vhost-user-video: Add initial vhost-user-video vmm, Albert Esteve, 2023/03/22
- [PATCH 10/12] vhost-user-video: add dev_type to CLI, Albert Esteve, 2023/03/22
- [PATCH 11/12] vhost-user-video-udmabuf: add udmabuf helpers, Albert Esteve, 2023/03/22
- [PATCH 12/12] Add support for v4l2_memory_dmabuf, Albert Esteve, 2023/03/22