meson: add a new option to enable intel-clc without building RT shaders

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26797>
This commit is contained in:
Lionel Landwerlin
2023-11-06 11:10:23 +02:00
committed by Marge Bot
parent c53a4711cb
commit 012489e55c
2 changed files with 22 additions and 8 deletions

View File

@@ -639,8 +639,18 @@ option(
choices : [
'enabled', 'disabled', 'system',
],
description : 'Build the intel-clc compiler (enables Vulkan Intel ' +
'Ray Tracing on supported hardware).'
description : 'Build the intel-clc compiler.'
)
option(
'intel-rt',
type : 'combo',
deprecated: {'true': 'enabled', 'false': 'disabled'},
value : 'disabled',
choices : [
'enabled', 'disabled',
],
description : 'Build Ray Tracing on supported hardware.'
)
option(