diff --git a/scripts/cmake/Coverage.cmake b/scripts/cmake/Coverage.cmake index e68763b14a9c5a3b3369473f078d661e337626d4..0689aee21cf0f3f94f6842fcd108de3ec4f027ad 100644 --- a/scripts/cmake/Coverage.cmake +++ b/scripts/cmake/Coverage.cmake @@ -3,6 +3,16 @@ if(NOT FASTCOV_PATH AND NOT POETRY) message(FATAL_ERROR "Code coverage requires either fastcov or poetry.") endif() +# https://github.com/linux-test-project/lcov/pull/125 +if(APPLE) + file( + DOWNLOAD + https://raw.githubusercontent.com/linux-test-project/lcov/41d8655951d6898511f98be2a2dbcfbe662f0b17/bin/genhtml + ${PROJECT_BINARY_DIR}/bin/genhtml + ) + set(GENHTML_PATH ${PROJECT_BINARY_DIR}/bin/genhtml) +endif() + include(CodeCoverage) append_coverage_compiler_flags() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Og")