meson.build (984B)
1 softmmu_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c')) 2 softmmu_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c')) 3 softmmu_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c')) 4 softmmu_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c')) 5 softmmu_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c')) 6 softmmu_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c')) 7 softmmu_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c')) 8 softmmu_ss.add(when: 'CONFIG_IDE_MMIO', if_true: files('mmio.c')) 9 softmmu_ss.add(when: 'CONFIG_IDE_PCI', if_true: files('pci.c')) 10 softmmu_ss.add(when: 'CONFIG_IDE_PIIX', if_true: files('piix.c', 'ioport.c')) 11 softmmu_ss.add(when: 'CONFIG_IDE_QDEV', if_true: files('qdev.c')) 12 softmmu_ss.add(when: 'CONFIG_IDE_SII3112', if_true: files('sii3112.c')) 13 softmmu_ss.add(when: 'CONFIG_IDE_VIA', if_true: files('via.c')) 14 softmmu_ss.add(when: 'CONFIG_MICRODRIVE', if_true: files('microdrive.c'))