From fd52110ec44b97359c2d75bb54047e6de10ed856 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Fri, 26 Apr 2019 01:09:25 +0100 Subject: [PATCH] meson: Don't try to build tests on Windows Most of these could be made to work, but would need to be ported off using fork and poll... --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6467a6b7c..80f353e0c 100644 --- a/meson.build +++ b/meson.build @@ -630,7 +630,10 @@ libxserver = [ libxserver += libxserver_dri3 subdir('hw') -subdir('test') + +if host_machine.system() != 'windows' + subdir('test') +endif install_man(configure_file( input: 'man/Xserver.man',