Из анализа покрытия исключены системные и сгенерированные файлы
This commit is contained in:
parent
6a06aa5898
commit
58573cebfc
@ -17,8 +17,10 @@ function(myx_cmake_code_coverage target)
|
||||
add_custom_target(
|
||||
${target}-coverage
|
||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||||
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov"
|
||||
--capture --directory ${CMAKE_BINARY_DIR})
|
||||
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov" --capture
|
||||
--exclude "/usr/\\\*"
|
||||
--exclude "${CMAKE_BINARY_DIR}/\\\*"
|
||||
--directory ${CMAKE_BINARY_DIR})
|
||||
add_dependencies(${target}-coverage ${target})
|
||||
|
||||
if(GENHTML_EXE)
|
||||
|
Loading…
Reference in New Issue
Block a user