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


      1shaders = [
      2  ['texture-blit', 'frag'],
      3  ['texture-blit', 'vert'],
      4  ['texture-blit-flip', 'vert'],
      5]
      6
      7foreach e : shaders
      8  output = '@0@-@1@.h'.format(e[0], e[1])
      9  genh += custom_target(output,
     10                output: output,
     11                capture: true,
     12                input: files('@0@.@1@'.format(e[0], e[1])),
     13                command: [shaderinclude, '@INPUT0@'])
     14endforeach