From: Dylan Baker Date: Wed, 18 Apr 2018 16:29:35 +0000 (-0700) Subject: meson: only build mesa_st tests when build-tests is true X-Git-Tag: upstream/19.0.0~5492 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c73abb4f824f70a0dc776389009336121c1d3405;p=platform%2Fupstream%2Fmesa.git meson: only build mesa_st tests when build-tests is true Since we have an option to turn test building on and off, we should honor that. Fixes: 34cb4d0ebc14663113705beae63dd52b9d1b2d87 ("meson: build tests for gallium mesa state tracker") Signed-off-by: Dylan Baker Reviewed-by: Eric Anholt --- diff --git a/src/meson.build b/src/meson.build index 5d8d554..c2566b7 100644 --- a/src/meson.build +++ b/src/meson.build @@ -82,7 +82,9 @@ if with_gallium subdir('gallium') # This has to be here since it requires libgallium, and subdir cannot # contain .. - subdir('mesa/state_tracker/tests') + if with_tests + subdir('mesa/state_tracker/tests') + endif endif # This must be after at least mesa, glx, and gallium, since libgl will be