From 2d35d6ed4a83439331d93caa4402ff1cecec64a0 Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Thu, 16 Dec 2021 14:17:44 -0400 Subject: [PATCH] Making features opt-in --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e65c5f9..3fcfb9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,9 +19,9 @@ set(THIRD_PARTY_DIR ${CMAKE_BINARY_DIR}/third_party) find_package(Threads REQUIRED) -option(DAGGY_ENABLE_SLURM "add support for slurm executor" ON) -option(DAGGY_ENABLE_REDIS "add support for redis logger" ON) -option(DAGGY_ENABLE_BENCHMARKS "Add catch2 benchmarks" ON) +option(DAGGY_ENABLE_SLURM "add support for slurm executor" OFF) +option(DAGGY_ENABLE_REDIS "add support for redis logger" OFF) +option(DAGGY_ENABLE_BENCHMARKS "Add catch2 benchmarks" OFF) include(cmake/rapidjson.cmake) include(cmake/pistache.cmake)