Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / hw / vfio / meson.build
blobbba776f75cc718956b37f68cb542b378a509d77f
1 vfio_ss = ss.source_set()
2 vfio_ss.add(files(
3   'helpers.c',
4   'common.c',
5   'container-base.c',
6   'container.c',
7   'migration.c',
8   'cpr.c',
9 ))
10 vfio_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr.c'))
11 vfio_ss.add(when: 'CONFIG_IOMMUFD', if_true: files(
12   'iommufd.c',
14 vfio_ss.add(when: 'CONFIG_VFIO_PCI', if_true: files(
15   'display.c',
16   'pci-quirks.c',
17   'pci.c',
19 vfio_ss.add(when: 'CONFIG_VFIO_CCW', if_true: files('ccw.c'))
20 vfio_ss.add(when: 'CONFIG_VFIO_PLATFORM', if_true: files('platform.c'))
21 vfio_ss.add(when: 'CONFIG_VFIO_XGMAC', if_true: files('calxeda-xgmac.c'))
22 vfio_ss.add(when: 'CONFIG_VFIO_AMD_XGBE', if_true: files('amd-xgbe.c'))
23 vfio_ss.add(when: 'CONFIG_VFIO_AP', if_true: files('ap.c'))
24 vfio_ss.add(when: 'CONFIG_VFIO_IGD', if_true: files('igd.c'))
26 specific_ss.add_all(when: 'CONFIG_VFIO', if_true: vfio_ss)