diff options
| author | Gurchetan Singh <gurchetansingh@google.com> | 2024-12-16 13:09:54 -0800 |
|---|---|---|
| committer | Marge Bot <marge-bot@fdo.invalid> | 2025-06-17 22:28:55 +0000 |
| commit | f7a9991b893955b34d3344aad20302e63b345378 (patch) | |
| tree | 9429c805bf7ce48c341b1aa01e14b78b0c81a417 /meson.options | |
| parent | f2b07903abaf348151aad02116585367d7d42f51 (diff) | |
mesa: add option to enable virtgpu_kumquat FFI for gfxstream
Will be used by Cuttlefish CI/CD, but also commonly used by
gfxstream developers.
meson setup gfxstream-build -Dvulkan-drivers="gfxstream" -Dgallium-drivers="" -Dvirtgpu_kumquat=true -Dopengl=false -Drust_std=2021
In distros, virtgpu_kumquat is not expected to be packaged since
it is a CI/CD tool.
Reviewed-by: Aaron Ruby <aruby@qnx.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35210>
Diffstat (limited to 'meson.options')
| -rw-r--r-- | meson.options | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.options b/meson.options index a3a77ba15fa..7bfe94abf41 100644 --- a/meson.options +++ b/meson.options @@ -840,3 +840,10 @@ option( ], description : 'Allows the fallback mechanism if the dependency is not available on the system, or too old.' ) + +option( + 'virtgpu_kumquat', + type : 'boolean', + value : false, + description : 'Build virtgpu_kumquat (only useful with gfxstream currently)' +) |