From dc60dc71ec3e7b87fdab3c8bacfd794404e24ab5 Mon Sep 17 00:00:00 2001 From: Bill Li Date: Sun, 28 Jan 2024 21:38:23 +0800 Subject: [PATCH] spdlog: disable feature std_format --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 954a45ed..3bf39180 100644 --- a/meson.build +++ b/meson.build @@ -230,7 +230,8 @@ if not spdlog_dep.found() 'compile_library=true', 'werror=false', 'tests=disabled', - 'external_fmt=disabled' + 'external_fmt=disabled', + 'std_format=disabled' ]) spdlog_dep = spdlog_sp.get_variable('spdlog_dep') else