From: Dylan Baker Date: Fri, 5 Oct 2018 16:36:05 +0000 (-0700) Subject: meson: Only build gallium state tracker tests with shared_glapi X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=d84f003b9532b0e9386be6caabaf5bfc91645d69 meson: Only build gallium state tracker tests with shared_glapi This has always been a requirement, it's just somehow been missed in the meson build. Reviewed-by: Eric Engestrom --- diff --git a/src/meson.build b/src/meson.build index af881cff70b..73146d37143 100644 --- a/src/meson.build +++ b/src/meson.build @@ -82,7 +82,7 @@ if with_gallium subdir('gallium') # This has to be here since it requires libgallium, and subdir cannot # contain .. - if with_tests + if with_tests and with_shared_glapi subdir('mesa/state_tracker/tests') endif endif