47 lines
1.4 KiB
CMake
47 lines
1.4 KiB
CMake
|
option(MYXX_CODE_COVERAGE "MyxxCMake: enable code coverage" OFF)
|
||
|
|
||
|
if(MYXX_CODE_COVERAGE)
|
||
|
find_program(LCOV_EXE NAMES lcov)
|
||
|
find_program(GENHTML_EXE NAMES genhtml)
|
||
|
endif()
|
||
|
|
||
|
function(myxx_code_coverage target)
|
||
|
if(NOT MYXX_CODE_COVERAGE)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
if(CMAKE_CXX_COMPILER_IS_GCC)
|
||
|
target_compile_options(${target} PUBLIC "--coverage")
|
||
|
set_property(
|
||
|
TARGET ${target}
|
||
|
APPEND_STRING
|
||
|
PROPERTY LINK_FLAGS " --coverage")
|
||
|
endif()
|
||
|
if(CMAKE_CXX_COMPILER_IS_CLANG)
|
||
|
target_compile_options(${target} PUBLIC "-fprofile-instr-generate -fcoverage-mapping")
|
||
|
set_property(
|
||
|
TARGET ${target}
|
||
|
APPEND_STRING
|
||
|
PROPERTY LINK_FLAGS " --coverage")
|
||
|
endif()
|
||
|
|
||
|
if(LCOV_EXE)
|
||
|
add_custom_target(${target}-coverage
|
||
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||
|
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov" --capture
|
||
|
--no-external
|
||
|
--base-directory ${CMAKE_SOURCE_DIR}
|
||
|
--directory ${CMAKE_BINARY_DIR})
|
||
|
--exclude "/usr/\\\*"
|
||
|
--exclude "${CMAKE_BINARY_DIR}/\\\*"
|
||
|
add_dependencies(${target}-coverage ${target})
|
||
|
|
||
|
if(GENHTML_EXE)
|
||
|
add_custom_target(${target}-coverage-report
|
||
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||
|
COMMAND ${GENHTML_EXE} --output-directory "${target}-coverage-html" "${target}.lcov")
|
||
|
add_dependencies(${target}-coverage-report ${target}-coverage)
|
||
|
endif()
|
||
|
endif()
|
||
|
endfunction()
|