target/mips: Inline gen_helper_0e0i()
[qemu/ar7.git] / target / mips / meson.build
blob2407a05d4c08ee01f160a2e1a2ef63e2871f876a
1 mips_user_ss = ss.source_set()
2 mips_softmmu_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_softmmu_arch += {'mips': mips_softmmu_ss}
23 target_user_arch += {'mips': mips_user_ss}