QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
607 B
20 lines
607 B
i386_kvm_ss = ss.source_set()
|
|
i386_kvm_ss.add(files('clock.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_APIC', if_true: files('apic.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_I8254', if_true: files('i8254.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_I8259', if_true: files('i8259.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_IOAPIC', if_true: files('ioapic.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files(
|
|
'xen_overlay.c',
|
|
'xen_evtchn.c',
|
|
'xen_gnttab.c',
|
|
'xen_xenstore.c',
|
|
'xen_primary_console.c',
|
|
'xenstore_impl.c',
|
|
))
|
|
|
|
i386_ss.add_all(when: 'CONFIG_KVM', if_true: i386_kvm_ss)
|
|
|
|
stub_ss.add(files(
|
|
'xen-stubs.c',
|
|
))
|
|
|