]> git.proxmox.com Git - mirror_qemu.git/blame - target/i386/kvm/meson.build
meson: Replace softmmu_ss -> system_ss
[mirror_qemu.git] / target / i386 / kvm / meson.build
CommitLineData
a9dc68d9 1i386_ss.add(when: 'CONFIG_KVM', if_false: files('kvm-stub.c'))
f5cc5a5c 2
02310f3a
PMD
3i386_softmmu_kvm_ss = ss.source_set()
4
5i386_softmmu_kvm_ss.add(files(
f5cc5a5c
CF
6 'kvm.c',
7 'kvm-cpu.c',
8))
9
61491cf4
DW
10i386_softmmu_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files('xen-emu.c'))
11
773ab6cb
PMD
12i386_softmmu_kvm_ss.add(when: 'CONFIG_SEV', if_false: files('sev-stub.c'))
13
de6cd759 14i386_system_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'), if_false: files('hyperv-stub.c'))
02310f3a 15
de6cd759 16i386_system_ss.add_all(when: 'CONFIG_KVM', if_true: i386_softmmu_kvm_ss)