diff options
author | Dylan Baker <[email protected]> | 2018-10-05 09:36:05 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-10-09 08:55:56 -0700 |
commit | d84f003b9532b0e9386be6caabaf5bfc91645d69 (patch) | |
tree | f887bcdf390416a1260945ef6ef0ba2ef7e72b0d /src | |
parent | 0fa6a8271a3e63e1f37a95ca598172f7ef1e2340 (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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/meson.build | 2 |
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 |