Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-05-08 16:34:20 +0300
committergabime <gmelman1@gmail.com>2019-05-08 16:34:20 +0300
commit576e389788a612caa20bb749700122d484fa74bd (patch)
treea1df269b2ac4fc23b5b8a22b8495ce4325f26e44 /CMakeLists.txt
parent7b15a3d34536b9cc9abbfde6c01c9a7df5a8b058 (diff)
static lib by default and tests
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 30cc59c2..c9af23ef 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,10 +45,10 @@ else()
set(SPDLOG_MASTER_PROJECT OFF)
endif()
-option(SPDLOG_STATIC_LIB "Build as static lib" OFF)
+option(SPDLOG_STATIC_LIB "Build as static lib" ONg)
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" OFF)
+option(SPDLOG_BUILD_TESTS "Build tests" ON)
option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" OFF)
option(SPDLOG_INSTALL "Generate the install target." ${SPDLOG_MASTER_PROJECT})