From 527981ba66f76cee2658252f436120762d5a954d Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 12 Jan 2022 18:22:46 +0100 Subject: [PATCH] Do not compile with `werror=true`. We are using `kiwix::Reader` and `kiwix::Searcher` which are now deprecated. Remove `werror` until we fix this. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6507c05..66b8fb7 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('kiwix-tools', 'cpp', version : '3.1.2', license : 'GPL', - default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) + default_options: ['c_std=c11', 'cpp_std=c++11']) compiler = meson.get_compiler('cpp')