summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-10-05 09:36:05 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-10-09 08:55:56 -0700
commitd84f003b9532b0e9386be6caabaf5bfc91645d69 (patch)
treef887bcdf390416a1260945ef6ef0ba2ef7e72b0d
parent0fa6a8271a3e63e1f37a95ca598172f7ef1e2340 (diff)
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 <eric.engestrom@intel.com>
-rw-r--r--src/meson.build2
1 files changed, 1 insertions, 1 deletions
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