target/riscv: deprecate the 'any' CPU type
[qemu/ar7.git] / target / mips / meson.build
blobe57ef24ecf4f556fe196bd7193c892e5d0399367
1 mips_user_ss = ss.source_set()
2 mips_system_ss = ss.source_set()
3 mips_ss = ss.source_set()
4 mips_ss.add(files(
5   'cpu.c',
6   'fpu.c',
7   'gdbstub.c',
8   'msa.c',
9 ))
11 if have_system
12   subdir('sysemu')
13 endif
15 if 'CONFIG_TCG' in config_all
16   subdir('tcg')
17 endif
19 mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
21 target_arch += {'mips': mips_ss}
22 target_system_arch += {'mips': mips_system_ss}
23 target_user_arch += {'mips': mips_user_ss}