xemu/target/s390x/meson.build
Cho, Yu-Chen 67043607d1 target/s390x: move kvm files into kvm/
move kvm files into kvm/
After the reshuffling, update MAINTAINERS accordingly.
Make use of the new directory:

target/s390x/kvm/

Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Cho, Yu-Chen <acho@suse.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210707105324.23400-14-acho@suse.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
2021-07-07 14:01:59 +02:00

41 lines
891 B
Meson

s390x_ss = ss.source_set()
s390x_ss.add(files(
'cpu.c',
'cpu_features.c',
'cpu_models.c',
'gdbstub.c',
'interrupt.c',
'cpu-dump.c',
))
gen_features = executable('gen-features', 'gen-features.c', native: true,
build_by_default: false)
gen_features_h = custom_target('gen-features.h',
output: 'gen-features.h',
capture: true,
command: gen_features)
s390x_ss.add(gen_features_h)
s390x_softmmu_ss = ss.source_set()
s390x_softmmu_ss.add(files(
'helper.c',
'arch_dump.c',
'diag.c',
'ioinst.c',
'machine.c',
'mmu_helper.c',
'sigp.c',
'cpu-sysemu.c',
))
s390x_user_ss = ss.source_set()
subdir('tcg')
subdir('kvm')
target_arch += {'s390x': s390x_ss}
target_softmmu_arch += {'s390x': s390x_softmmu_ss}
target_user_arch += {'s390x': s390x_user_ss}