From 58e277a8b7fb107bcb98d95b6b1c05c0f2290827 Mon Sep 17 00:00:00 2001 From: jackun Date: Wed, 11 May 2022 14:58:03 +0300 Subject: [PATCH] Disable werror and tests for spdlog --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 683c97b2..5a363fd0 100644 --- a/meson.build +++ b/meson.build @@ -256,6 +256,8 @@ if not spdlog_dep.found() spdlog_sp = subproject('spdlog', default_options: [ 'default_library=static', 'compile_library=true', + 'werror=false', + 'tests=false', ]) spdlog_dep = spdlog_sp.get_variable('spdlog_dep') else