From fad6a806359efd7c64dc81443ece6d430454865f Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sun, 24 Oct 2021 20:06:20 -0400 Subject: [PATCH] meson: build freedreno tools when other parts of freedreno not enabled Signed-off-by: Ilia Mirkin Reviewed-by: Emma Anholt Acked-by: Rob Clark Part-of: --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 5a4d329db0c..5bfa89b4825 100644 --- a/src/meson.build +++ b/src/meson.build @@ -88,7 +88,7 @@ endif if with_gallium_etnaviv subdir('etnaviv') endif -if with_gallium_freedreno or with_freedreno_vk +if with_gallium_freedreno or with_freedreno_vk or with_tools.contains('freedreno') subdir('freedreno') endif if with_gallium_panfrost or with_gallium_lima or with_panfrost_vk or with_tools.contains('panfrost')