qapi: allow unions to contain further unions
[qemu/armbru.git] / target / i386 / kvm / meson.build
blob322272091bce94b25a13874ab7216f2913ca4fdc
1 i386_ss.add(when: 'CONFIG_KVM', if_false: files('kvm-stub.c'))
3 i386_softmmu_kvm_ss = ss.source_set()
5 i386_softmmu_kvm_ss.add(files(
6   'kvm.c',
7   'kvm-cpu.c',
8 ))
10 i386_softmmu_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files('xen-emu.c'))
12 i386_softmmu_kvm_ss.add(when: 'CONFIG_SEV', if_false: files('sev-stub.c'))
14 i386_softmmu_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'), if_false: files('hyperv-stub.c'))
16 i386_softmmu_ss.add_all(when: 'CONFIG_KVM', if_true: i386_softmmu_kvm_ss)