From 5ed7e670708a88f05d3233771b5e24ada80820e8 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Tue, 23 Dec 2025 15:05:35 +0100 Subject: [PATCH] Removed test coverage code --- CMakeLists.txt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17f2a03..44d7787 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,15 +18,6 @@ else() URL https://github.com/google/googletest/archive/refs/heads/main.zip ) - # Enable coverage - option(CODE_COVERAGE "Enable coverage reporting" ON) - - if(CODE_COVERAGE) - message(STATUS "Code coverage enabled") - add_compile_options(/PROFILE) # MSVC flag for coverage - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zi /Od") # Debug info - endif() - # For Windows: Prevent overriding the parent project's compiler/linker settings set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) FetchContent_MakeAvailable(googletest)