]> git.proxmox.com Git - mirror_qemu.git/blame - hw/vfio/meson.build
x86: acpi: workaround Windows not handling name references in Package properly
[mirror_qemu.git] / hw / vfio / meson.build
CommitLineData
4f780d56
MAL
1vfio_ss = ss.source_set()
2vfio_ss.add(files(
3 'common.c',
4 'spapr.c',
a9e271ec 5 'migration.c',
4f780d56
MAL
6))
7vfio_ss.add(when: 'CONFIG_VFIO_PCI', if_true: files(
8 'display.c',
9 'pci-quirks.c',
10 'pci.c',
11))
12vfio_ss.add(when: 'CONFIG_VFIO_CCW', if_true: files('ccw.c'))
13vfio_ss.add(when: 'CONFIG_VFIO_PLATFORM', if_true: files('platform.c'))
14vfio_ss.add(when: 'CONFIG_VFIO_XGMAC', if_true: files('calxeda-xgmac.c'))
15vfio_ss.add(when: 'CONFIG_VFIO_AMD_XGBE', if_true: files('amd-xgbe.c'))
16vfio_ss.add(when: 'CONFIG_VFIO_AP', if_true: files('ap.c'))
17vfio_ss.add(when: 'CONFIG_VFIO_IGD', if_true: files('igd.c'))
18
19specific_ss.add_all(when: 'CONFIG_VFIO', if_true: vfio_ss)