aboutsummaryrefslogtreecommitdiff
path: root/hw/vfio-user/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'hw/vfio-user/meson.build')
-rw-r--r--hw/vfio-user/meson.build11
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/vfio-user/meson.build b/hw/vfio-user/meson.build
new file mode 100644
index 0000000..2ed0ae5
--- /dev/null
+++ b/hw/vfio-user/meson.build
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+vfio_user_ss = ss.source_set()
+vfio_user_ss.add(files(
+ 'container.c',
+ 'device.c',
+ 'pci.c',
+ 'proxy.c',
+))
+
+system_ss.add_all(when: 'CONFIG_VFIO_USER', if_true: vfio_user_ss)