]> git.proxmox.com Git - mirror_qemu.git/blame - target/i386/kvm/meson.build
target/i386/kvm: Introduce i386_softmmu_kvm Meson source set
[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
a9dc68d9 10i386_softmmu_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'), if_false: files('hyperv-stub.c'))
02310f3a
PMD
11
12i386_softmmu_ss.add_all(when: 'CONFIG_KVM', if_true: i386_softmmu_kvm_ss)