mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 14:23:53 -06:00

Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
23 lines
442 B
Meson
23 lines
442 B
Meson
mips_user_ss = ss.source_set()
|
|
mips_system_ss = ss.source_set()
|
|
mips_ss = ss.source_set()
|
|
mips_ss.add(files(
|
|
'cpu.c',
|
|
'fpu.c',
|
|
'gdbstub.c',
|
|
'msa.c',
|
|
))
|
|
|
|
if have_system
|
|
subdir('system')
|
|
endif
|
|
|
|
if 'CONFIG_TCG' in config_all_accel
|
|
subdir('tcg')
|
|
endif
|
|
|
|
mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
|
|
|
|
target_arch += {'mips': mips_ss}
|
|
target_system_arch += {'mips': mips_system_ss}
|
|
target_user_arch += {'mips': mips_user_ss}
|