48 lines
1.5 KiB
CMake
48 lines
1.5 KiB
CMake
option(MYX_CMAKE_CODE_COVERAGE "MyxCMake: enable code coverage" OFF)
|
|
|
|
if(MYX_CMAKE_CODE_COVERAGE)
|
|
find_program(LCOV_EXE NAMES lcov)
|
|
find_program(GENHTML_EXE NAMES genhtml)
|
|
endif()
|
|
|
|
function(myx_cmake_code_coverage target)
|
|
if(MYX_CMAKE_CODE_COVERAGE)
|
|
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-exernal
|
|
--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()
|
|
endif()
|
|
endfunction()
|