cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

meson.build (377B)


      1macio_ss = ss.source_set()
      2macio_ss.add(files('macio.c'))
      3macio_ss.add(when: 'CONFIG_CUDA', if_true: files('cuda.c'))
      4macio_ss.add(when: 'CONFIG_MACIO_GPIO', if_true: files('gpio.c'))
      5macio_ss.add(when: 'CONFIG_MAC_DBDMA', if_true: files('mac_dbdma.c'))
      6macio_ss.add(when: 'CONFIG_MAC_PMU', if_true: files('pmu.c'))
      7
      8softmmu_ss.add_all(when: 'CONFIG_MACIO', if_true: macio_ss)