Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/hw/misc/macio/meson.build
2023-03-06 14:48:14 +01:00

8 lines
377 B
Meson

macio_ss = ss.source_set()
macio_ss.add(files('macio.c'))
macio_ss.add(when: 'CONFIG_CUDA', if_true: files('cuda.c'))
macio_ss.add(when: 'CONFIG_MACIO_GPIO', if_true: files('gpio.c'))
macio_ss.add(when: 'CONFIG_MAC_DBDMA', if_true: files('mac_dbdma.c'))
macio_ss.add(when: 'CONFIG_MAC_PMU', if_true: files('pmu.c'))
softmmu_ss.add_all(when: 'CONFIG_MACIO', if_true: macio_ss)