diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2019-04-26 01:09:25 +0100 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2019-04-30 20:07:51 +0000 |
commit | fd52110ec44b97359c2d75bb54047e6de10ed856 (patch) | |
tree | 7d616fffbbadf1c55ee252de91c8ba925ae77383 /meson.build | |
parent | 50b8670fdf7ab9195617145c229d8fae8519f5a9 (diff) |
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...
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
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', |