Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
16 lines
427 B
Meson
16 lines
427 B
Meson
shaders = [
|
|
['texture-blit', 'frag'],
|
|
['texture-blit', 'vert'],
|
|
['texture-blit-flip', 'vert'],
|
|
]
|
|
|
|
foreach e : shaders
|
|
output = '@0@-@[email protected]'.format(e[0], e[1])
|
|
genh += custom_target(output,
|
|
output: output,
|
|
capture: true,
|
|
input: files('@0@.@1@'.format(e[0], e[1])),
|
|
build_by_default: false,
|
|
command: [shaderinclude, '@INPUT0@'])
|
|
endforeach
|