]> git.proxmox.com Git - mirror_qemu.git/blame - hw/mips/meson.build
include/hw/pci: Clean up a few things checkpatch.pl would flag
[mirror_qemu.git] / hw / mips / meson.build
CommitLineData
2c44220d 1mips_ss = ss.source_set()
3ebbf861 2mips_ss.add(files('bootloader.c', 'mips_int.c'))
313d1e91 3mips_ss.add(when: 'CONFIG_FW_CFG_MIPS', if_true: files('fw_cfg.c'))
c76b409f 4mips_ss.add(when: 'CONFIG_LOONGSON3V', if_true: files('loongson3_bootp.c', 'loongson3_virt.c'))
2c44220d 5mips_ss.add(when: 'CONFIG_MALTA', if_true: files('gt64xxx_pci.c', 'malta.c'))
db6b6f4d
PMD
6mips_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('cps.c'))
7
8if 'CONFIG_TCG' in config_all
9mips_ss.add(when: 'CONFIG_JAZZ', if_true: files('jazz.c'))
2c44220d 10mips_ss.add(when: 'CONFIG_MIPSSIM', if_true: files('mipssim.c'))
db6b6f4d 11mips_ss.add(when: 'CONFIG_FULOONG', if_true: files('fuloong2e.c'))
feabc71d 12mips_ss.add(when: 'CONFIG_MIPS_BOSTON', if_true: [files('boston.c'), fdt])
db6b6f4d 13endif
2c44220d
MAL
14
15hw_arch += {'mips': mips_ss}