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 (385B)


      1mem_ss = ss.source_set()
      2mem_ss.add(files('memory-device.c'))
      3mem_ss.add(when: 'CONFIG_DIMM', if_true: files('pc-dimm.c'))
      4mem_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_mc.c'))
      5mem_ss.add(when: 'CONFIG_NVDIMM', if_true: files('nvdimm.c'))
      6
      7softmmu_ss.add_all(when: 'CONFIG_MEM_DEVICE', if_true: mem_ss)
      8
      9softmmu_ss.add(when: 'CONFIG_FUZZ', if_true: files('sparse-mem.c'))