From 29c949ab03821fdf354e7ffa573d2cf95e794c08 Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 8 May 2019 16:36:14 +0300 Subject: [PATCH] static lib by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9af23ef..179a0adf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ else() set(SPDLOG_MASTER_PROJECT OFF) endif() -option(SPDLOG_STATIC_LIB "Build as static lib" ONg) +option(SPDLOG_STATIC_LIB "Build as static lib" ON) option(SPDLOG_BUILD_EXAMPLES "Build examples" ${SPDLOG_MASTER_PROJECT}) option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/benchmark.git to be installed)" OFF) option(SPDLOG_BUILD_TESTS "Build tests" ON)