From 39a1828a3b5277d7bd6dd0f0f5d0d0052adf2484 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Mon, 23 Dec 2024 00:00:00 +0000 Subject: [PATCH] build(cmake): disable spdlog exceptions Signed-off-by: k4yt3x --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6544532..3b9f409 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -249,7 +249,7 @@ if(VIDEO2X_USE_EXTERNAL_SPDLOG) set(SPDLOG_LIB spdlog::spdlog) else() # spdlog exceptions are incompatible with ncnn - option(SPDLOG_NO_EXCEPTIONS "" OFF) + option(SPDLOG_NO_EXCEPTIONS "" ON) add_subdirectory(third_party/spdlog) set(SPDLOG_LIB spdlog::spdlog_header_only) endif()