From d8498fd655127972e05427a6915d6456c801dcf0 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 18 May 2020 11:19:53 +0200 Subject: [PATCH] Do not build `server` test on windows. On the appveyor CI, the link of the `server` test fails with `libmicrohttpd`. Do not build the test on windows to not break the CI. --- test/meson.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 2528c36b0..bfbe9a7a3 100644 --- a/test/meson.build +++ b/test/meson.build @@ -12,9 +12,13 @@ tests = [ 'kiwixserve', 'book', 'manager', - 'server' ] +if build_machine.system() != 'windows' + tests += ['server'] +endif + + gtest_dep = dependency('gtest', main:true,