]> git.proxmox.com Git - mirror_qemu.git/blob - target/m68k/meson.build
27d2d7ba874b6bffe0be7b7751dbce34c1a3c09e
[mirror_qemu.git] / target / m68k / meson.build
1 m68k_ss = ss.source_set()
2 m68k_ss.add(files(
3 'cpu.c',
4 'fpu_helper.c',
5 'gdbstub.c',
6 'helper.c',
7 'op_helper.c',
8 'softfloat.c',
9 'translate.c',
10 ))
11
12 m68k_softmmu_ss = ss.source_set()
13 m68k_softmmu_ss.add(files(
14 'm68k-semi.c',
15 'monitor.c'
16 ))
17
18 target_arch += {'m68k': m68k_ss}
19 target_softmmu_arch += {'m68k': m68k_softmmu_ss}