Merge tag 'pull-ppc-20220706' of https://gitlab.com/danielhb/qemu into staging
[qemu/rayw.git] / hw / xen / meson.build
blob08dc1f6857381b6fde0b931d652dec447c242ecb
1 softmmu_ss.add(when: ['CONFIG_XEN', xen], if_true: files(
2   'xen-backend.c',
3   'xen-bus-helper.c',
4   'xen-bus.c',
5   'xen-legacy-backend.c',
6   'xen_devconfig.c',
7   'xen_pvdev.c',
8 ))
10 xen_specific_ss = ss.source_set()
11 if have_xen_pci_passthrough
12   xen_specific_ss.add(files(
13     'xen-host-pci-device.c',
14     'xen_pt.c',
15     'xen_pt_config_init.c',
16     'xen_pt_graphics.c',
17     'xen_pt_load_rom.c',
18     'xen_pt_msi.c',
19   ))
20 else
21   xen_specific_ss.add('xen_pt_stub.c')
22 endif
24 specific_ss.add_all(when: ['CONFIG_XEN', xen], if_true: xen_specific_ss)