]> git.proxmox.com Git - mirror_qemu.git/blob - target/mips/meson.build
Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging
[mirror_qemu.git] / target / mips / meson.build
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 ))
10
11 if have_system
12 subdir('sysemu')
13 endif
14
15 if 'CONFIG_TCG' in config_all
16 subdir('tcg')
17 endif
18
19 mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
20
21 target_arch += {'mips': mips_ss}
22 target_system_arch += {'mips': mips_system_ss}
23 target_user_arch += {'mips': mips_user_ss}