You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/ui/shader/meson.build

15 lines
386 B
Meson

shaders = [
['texture-blit', 'frag'],
['texture-blit', 'vert'],
['texture-blit-flip', 'vert'],
]
foreach e : shaders
output = '@0@-@1@.h'.format(e[0], e[1])
genh += custom_target(output,
output: output,
capture: true,
input: files('@0@.@1@'.format(e[0], e[1])),
command: [shaderinclude, '@INPUT0@'])
endforeach