meson: rework intel-rt option to be a feature

This allows intel-rt to be turned on in cases where we're on x86_64 and
we're building anv, but otherwise default to off, while still giving
users the power to ignore those defaults if they want to.

Because of the use of `feature.disable_if` this bumps the Meson
requirement to 1.1. I can get rid of that, but it just makes for a lot
more code than using the helper methods

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27645>
This commit is contained in:
Dylan Baker
2024-02-15 12:08:20 -08:00
committed by Marge Bot
parent 6a126b75e0
commit 876db91350
2 changed files with 6 additions and 8 deletions

View File

@@ -651,12 +651,8 @@ option(
option(
'intel-rt',
type : 'combo',
type : 'feature',
deprecated: {'true': 'enabled', 'false': 'disabled'},
value : 'disabled',
choices : [
'enabled', 'disabled',
],
description : 'Build Ray Tracing on supported hardware.'
)