From 40fcc356e3e7cac1b8120d65bf4d4b3f128f5577 Mon Sep 17 00:00:00 2001 From: Michael Brunner Date: Wed, 25 Sep 2024 19:59:42 +0200 Subject: [PATCH] ENH: remove flag for coverage (was used on a trial basis) Signed-off-by: Michael Brunner --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9a7fb26..609f7cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ if (MSVC) add_compile_options(/W3 /WX /wd4251 /experimental:module /std:c++latest /RTC1) else () add_compile_options(/W3 /WX /wd4251 /experimental:module /std:c++latest /O2) - add_link_options(--coverage) endif () elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") add_compile_options(-Wall -Wextra -pedantic -std=c++23) # -Werror => this is too strict for now - causes break when building CSV library