xref: /qemu/hw/vfio-user/meson.build (revision 3bdb738b734c77f93f93f8119c8f6ba8a9c5947c)
1# SPDX-License-Identifier: GPL-2.0-or-later
2
3vfio_user_ss = ss.source_set()
4vfio_user_ss.add(files(
5  'container.c',
6  'device.c',
7  'pci.c',
8  'proxy.c',
9))
10
11system_ss.add_all(when: 'CONFIG_VFIO_USER', if_true: vfio_user_ss)
12