From d66125278a1ad4bd3b31c901ddf7db3abb9889f4 Mon Sep 17 00:00:00 2001 From: Chris Goller Date: Mon, 9 Dec 2019 22:17:46 -0800 Subject: [PATCH] build: use consistent case for falco options Signed-off-by: Chris Goller --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ff02914..0ee28a93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.3.2) project(falco) -option(FALCO_Coverage "Build test suite with coverage information" OFF) +option(FALCO_COVERAGE "Build test suite with coverage information" OFF) if(NOT SYSDIG_DIR) get_filename_component(SYSDIG_DIR "${PROJECT_SOURCE_DIR}/../sysdig" REALPATH) @@ -635,7 +635,7 @@ endif() install(FILES falco.yaml DESTINATION "${FALCO_ETC_DIR}") -if(FALCO_Coverage) +if(FALCO_COVERAGE) if (NOT (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))) message(FATAL_ERROR "FALCO_Coverage requires GCC or Clang.") endif()