From 7d678be07a614ae16910769dd96764c2d1886776 Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 19 Jun 2019 17:31:25 +0300 Subject: [PATCH] CMake - turn off examples by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e94a4e5f..68f478dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ if (NOT DEFINED SPDLOG_MASTER_PROJECT) endif() endif () -option(SPDLOG_BUILD_EXAMPLES "Build examples" ON) +option(SPDLOG_BUILD_EXAMPLES "Build examples" OFF) 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_HO_TESTS "Build tests using the header only version" OFF)