From 4d107fca340048c5b49bd0d312203c62f8f22fdf Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Sun, 28 Feb 2021 14:53:59 -0600 Subject: [PATCH] Fix clang var. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4230bbd2..84fdef48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,8 +53,8 @@ add_subdirectory(3rdparty/toluapp) set(conky_libs ${conky_libs} toluapp_lib_static) if(BUILD_TESTS) - if(USING_CLANG_7) - message(STATUS "Detected clang-7, enabling test coverage reports") + if(USING_CLANG) + message(STATUS "Detected clang, enabling test coverage reports") # Enable coverage checks include(CodeCoverage) append_coverage_compiler_flags()