configure: move GTK+ detection to Meson
[qemu/ar7.git] / target / mips / meson.build
blob4179395a8ea626992a5471f74f480f6c9e032ee7
1 mips_ss = ss.source_set()
2 mips_ss.add(files(
3   'cpu.c',
4   'dsp_helper.c',
5   'fpu_helper.c',
6   'gdbstub.c',
7   'helper.c',
8   'lmmi_helper.c',
9   'msa_helper.c',
10   'op_helper.c',
11   'translate.c',
13 mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
15 mips_softmmu_ss = ss.source_set()
16 mips_softmmu_ss.add(files(
17   'addr.c',
18   'cp0_helper.c',
19   'cp0_timer.c',
20   'machine.c',
21   'mips-semi.c',
24 target_arch += {'mips': mips_ss}
25 target_softmmu_arch += {'mips': mips_softmmu_ss}