From 78417e836c98a915620a765dca8e791c4b79cf71 Mon Sep 17 00:00:00 2001 From: franneck94 Date: Tue, 5 Mar 2024 10:56:03 +0100 Subject: [PATCH] fix --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a5b623..bdac436 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ option(ENABLE_WARNINGS "Enable to add warnings to a target." ON) option(ENABLE_WARNINGS_AS_ERRORS "Enable to treat warnings as errors." OFF) option(ENABLE_TESTING "Enable a Unit Testing build." ON) -option(ENABLE_COVERAGE "Enable a Code Coverage build." ON) +option(ENABLE_COVERAGE "Enable a Code Coverage build." OFF) option(ENABLE_CLANG_TIDY "Enable to add clang tidy." OFF) @@ -29,8 +29,8 @@ option(ENABLE_SANITIZE_UNDEF "Enable undefined sanitize." OFF) option(ENABLE_SANITIZE_LEAK "Enable leak sanitize (Gcc/Clang only)." OFF) option(ENABLE_SANITIZE_THREAD "Enable thread sanitize (Gcc/Clang only)." OFF) -option(ENABLE_CLANG_FORMAT "Enable to add clang-format." ON) -option(ENABLE_CMAKE_FORMAT "Enable to add cmake-format." ON) +option(ENABLE_CLANG_FORMAT "Enable to add clang-format." OFF) +option(ENABLE_CMAKE_FORMAT "Enable to add cmake-format." OFF) option(ENABLE_LTO "Enable to add Link Time Optimization." ON)