mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 14:18:04 +02:00
meson: fix renderdoc integration define
this should be an integer
Fixes: 93390d4b73 ("vk/runtime,zink: only integrate renderdoc on supported platforms")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41519>
This commit is contained in:
parent
6cb04bb791
commit
afa9ab41b9
1 changed files with 1 additions and 1 deletions
|
|
@ -2328,7 +2328,7 @@ renderdoc_integration_supported = [
|
|||
'linux',
|
||||
'android',
|
||||
].contains(host_machine.system())
|
||||
pre_args += '-DHAVE_RENDERDOC_INTEGRATION=@0@'.format(renderdoc_integration_supported)
|
||||
pre_args += '-DHAVE_RENDERDOC_INTEGRATION=@0@'.format(renderdoc_integration_supported.to_int())
|
||||
|
||||
with_teflon = get_option('teflon')
|
||||
if with_teflon and with_tests
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue