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)