diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-10-07 18:16:56 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-13 10:47:49 +0200 |
commit | 02310f3a91470575a103857222d3a6e8acea338e (patch) | |
tree | 9c5120ef67bd3156ea90bdf93910f30ee7dc9ec9 /target/i386 | |
parent | 993e26058d10756f5e206742c20b0cd03a9cb973 (diff) | |
download | qemu-02310f3a91470575a103857222d3a6e8acea338e.zip qemu-02310f3a91470575a103857222d3a6e8acea338e.tar.gz qemu-02310f3a91470575a103857222d3a6e8acea338e.tar.bz2 |
target/i386/kvm: Introduce i386_softmmu_kvm Meson source set
Introduce the i386_softmmu_kvm Meson source set to be able to
add features dependent on CONFIG_KVM.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20211007161716.453984-4-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386')
-rw-r--r-- | target/i386/kvm/meson.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/i386/kvm/meson.build b/target/i386/kvm/meson.build index 0a53341..b1c7695 100644 --- a/target/i386/kvm/meson.build +++ b/target/i386/kvm/meson.build @@ -1,8 +1,12 @@ i386_ss.add(when: 'CONFIG_KVM', if_false: files('kvm-stub.c')) -i386_softmmu_ss.add(when: 'CONFIG_KVM', if_true: files( +i386_softmmu_kvm_ss = ss.source_set() + +i386_softmmu_kvm_ss.add(files( 'kvm.c', 'kvm-cpu.c', )) i386_softmmu_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'), if_false: files('hyperv-stub.c')) + +i386_softmmu_ss.add_all(when: 'CONFIG_KVM', if_true: i386_softmmu_kvm_ss) |