From: Dylan Baker Date: Wed, 23 May 2018 00:06:35 +0000 (-0700) Subject: meson: don't build gallium trivial tests on windows X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56db696875dbac9b5604319bf247da3aaf40ee11;p=mesa.git meson: don't build gallium trivial tests on windows They require the pipe-loaders, which require xmlconfig, which doesn't build with msvc. Acked-by: Eric Engestrom Acked-by: Kristian H. Kristensen --- diff --git a/src/gallium/tests/meson.build b/src/gallium/tests/meson.build index 080bd8485b0..15b9f549647 100644 --- a/src/gallium/tests/meson.build +++ b/src/gallium/tests/meson.build @@ -18,6 +18,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -subdir('trivial') -subdir('unit') +if not with_platform_windows + # pipe-loader doesn't build on windows. + subdir('trivial') +endif +if with_gallium_softpipe + subdir('unit') +endif subdir('graw')