qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

meson.build (552B)


      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 ))
      9 
     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(files('xen_pt_stub.c'))
     22 endif
     23 
     24 specific_ss.add_all(when: ['CONFIG_XEN', xen], if_true: xen_specific_ss)