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


      1fs_ss = ss.source_set()
      2fs_ss.add(files(
      3  '9p-local.c',
      4  '9p-posix-acl.c',
      5  '9p-proxy.c',
      6  '9p-synth.c',
      7  '9p-util.c',
      8  '9p-xattr-user.c',
      9  '9p-xattr.c',
     10  '9p.c',
     11  'codir.c',
     12  'cofile.c',
     13  'cofs.c',
     14  'coth.c',
     15  'coxattr.c',
     16))
     17fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
     18softmmu_ss.add_all(when: 'CONFIG_FSDEV_9P', if_true: fs_ss)
     19
     20specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))