Поддержка версий lcov до 1.14

This commit is contained in:
Andrei Astafev 2022-01-11 09:59:44 +03:00
parent 7e50160742
commit ece04ba69b

View File

@ -27,9 +27,11 @@ function(myx_cmake_code_coverage target)
${target}-coverage
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov" --capture
--exclude "/usr/\\\*"
--exclude "${CMAKE_BINARY_DIR}/\\\*"
--no-exernal
--base-directory ${CMAKE_SOURCE_DIR}
--directory ${CMAKE_BINARY_DIR})
# --exclude "/usr/\\\*"
# --exclude "${CMAKE_BINARY_DIR}/\\\*"
add_dependencies(${target}-coverage ${target})
if(GENHTML_EXE)