]> git.proxmox.com Git - mirror_qemu.git/blame - target/avr/meson.build
meson: Rename target_softmmu_arch -> target_system_arch
[mirror_qemu.git] / target / avr / meson.build
CommitLineData
abff1abf
PB
1gen = [
2 decodetree.process('insn.decode', extra_args: [ '--decode', 'decode_insn',
3 '--insnwidth', '16' ])
4]
5
6avr_ss = ss.source_set()
de6cd759 7avr_system_ss = ss.source_set()
abff1abf
PB
8
9avr_ss.add(gen)
10avr_ss.add(files(
11 'translate.c',
12 'helper.c',
13 'cpu.c',
14 'gdbstub.c',
15 'disas.c'))
16
de6cd759 17avr_system_ss.add(files('machine.c'))
abff1abf
PB
18
19target_arch += {'avr': avr_ss}
01c85e60 20target_system_arch += {'avr': avr_system_ss}