From a9c5a08d61f0feeacc8151a8be47659e4d7a6be5 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelsalam Date: Tue, 15 Oct 2024 15:08:21 +0200 Subject: [PATCH] Change: Enable feature toggle for compliance reports by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f646ba2a4..bc7b71249 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -248,7 +248,7 @@ endif (NOT CVSS3_RATINGS) add_definitions (-DCVSS3_RATINGS=${CVSS3_RATINGS}) if (NOT COMPLIANCE_REPORTS) - set (COMPLIANCE_REPORTS 0) + set (COMPLIANCE_REPORTS 1) endif (NOT COMPLIANCE_REPORTS) add_definitions (-DCOMPLIANCE_REPORTS=${COMPLIANCE_REPORTS})