From 7d2337c6eb863e8ccce9ba2471f32f44740d9caa Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 3 Apr 2020 20:37:05 +0300 Subject: [PATCH] Fix #1504 - Extra warnings OFF by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb2daf5a..f8ce5f1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,7 +80,7 @@ option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/ option(SPDLOG_SANITIZE_ADDRESS "Enable address sanitizer in tests" OFF) # warning options -option(SPDLOG_ENABLE_WARNINGS "Enable compiler warnings" ON) +option(SPDLOG_ENABLE_WARNINGS "Enable compiler warnings" OFF) # install options option(SPDLOG_INSTALL "Generate the install target" ${SPDLOG_MASTER_PROJECT})