Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
22 lines
1.0 KiB
Meson
22 lines
1.0 KiB
Meson
system_ss.add(files(
|
|
'block.c',
|
|
'cdrom.c',
|
|
'hd-geometry.c'
|
|
))
|
|
system_ss.add(when: 'CONFIG_FDC', if_true: files('fdc.c'))
|
|
system_ss.add(when: 'CONFIG_FDC_ISA', if_true: files('fdc-isa.c'))
|
|
system_ss.add(when: 'CONFIG_FDC_SYSBUS', if_true: files('fdc-sysbus.c'))
|
|
system_ss.add(when: 'CONFIG_PFLASH_CFI01', if_true: files('pflash_cfi01.c'))
|
|
system_ss.add(when: 'CONFIG_PFLASH_CFI02', if_true: files('pflash_cfi02.c'))
|
|
system_ss.add(when: 'CONFIG_SSI_M25P80', if_true: files('m25p80.c'))
|
|
system_ss.add(when: 'CONFIG_SSI_M25P80', if_true: files('m25p80_sfdp.c'))
|
|
system_ss.add(when: 'CONFIG_SWIM', if_true: files('swim.c'))
|
|
system_ss.add(when: 'CONFIG_XEN_BUS', if_true: files('xen-block.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_VIRTIO_BLK', if_true: files('virtio-blk.c'))
|
|
system_ss.add(when: 'CONFIG_VIRTIO_BLK', if_true: files('virtio-blk-common.c'))
|
|
system_ss.add(when: 'CONFIG_VHOST_USER_BLK', if_true: files('vhost-user-blk.c'))
|
|
system_ss.add(when: 'CONFIG_VHOST_USER_BLK', if_true: files('virtio-blk-common.c'))
|
|
|
|
subdir('dataplane')
|