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.
This commit is contained in:
Matthieu Gautier 2020-05-18 11:19:53 +02:00
parent 7ec8e33b83
commit d8498fd655
1 changed files with 5 additions and 1 deletions

View File

@ -12,9 +12,13 @@ tests = [
'kiwixserve',
'book',
'manager',
'server'
]
if build_machine.system() != 'windows'
tests += ['server']
endif
gtest_dep = dependency('gtest',
main:true,