]> git.proxmox.com Git - mirror_qemu.git/blob - target/microblaze/meson.build
meson: Replace softmmu_ss -> system_ss
[mirror_qemu.git] / target / microblaze / meson.build
1 gen = decodetree.process('insns.decode')
2
3 microblaze_ss = ss.source_set()
4 microblaze_ss.add(gen)
5 microblaze_ss.add(files(
6 'cpu.c',
7 'gdbstub.c',
8 'helper.c',
9 'op_helper.c',
10 'translate.c',
11 ))
12
13 microblaze_system_ss = ss.source_set()
14 microblaze_system_ss.add(files(
15 'mmu.c',
16 'machine.c',
17 ))
18
19 target_arch += {'microblaze': microblaze_ss}
20 target_softmmu_arch += {'microblaze': microblaze_system_ss}