diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-04-18 10:53:27 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-04-26 10:46:55 -0700 |
commit | ae45020491a64696e61bab30d185e02d22383970 (patch) | |
tree | 70be826f79ebfca1cc9984bf82f964ae02c8e786 | |
parent | 261a40745a66f29f3ee9e4e440c6f454371f1259 (diff) |
meson: don't build classic mesa tests without dri_drivers
Since mesa_classic is build-on-demand the tests will create a demand and
add a bunch of extra compilation.
Fixes: 43a6e84927e3b1290f6f211f5dfb184dfe5a719e
("meson: build mesa test.")
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit aaab6242456a4a5e737da0add179704b0b6f3676)
-rw-r--r-- | src/mesa/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/meson.build b/src/mesa/meson.build index 30954beac5..3100dfc50f 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -732,6 +732,6 @@ endif if with_glx == 'xlib' subdir('drivers/x11') endif -if with_tests +if with_tests and dri_drivers != [] subdir('main/tests') endif |