meson: Update DirectX-Headers dependency to 1.602.0 version with fallback to the wrap

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16597>
This commit is contained in:
Sil Vilerino 2022-05-23 07:06:58 -07:00 committed by Marge Bot
parent a4323b0979
commit 4a9e068a6e
1 changed files with 3 additions and 1 deletions

View File

@ -675,7 +675,9 @@ dep_dxheaders = null_dep
if with_gallium_d3d12 or with_microsoft_clc or with_microsoft_vk
dep_dxheaders = dependency('directx-headers', required : false)
if not dep_dxheaders.found()
dep_dxheaders = dependency('DirectX-Headers', fallback : ['DirectX-Headers', 'dep_dxheaders'],
dep_dxheaders = dependency('DirectX-Headers',
version : '>= 1.602.0',
fallback : ['DirectX-Headers', 'dep_dxheaders'],
required : with_gallium_d3d12 or with_microsoft_vk
)
endif