aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules/EnableCoverage.cmake
blob: 20be368322c1c2c8b5a2585aed86be8a05b1af8a (plain)
1
2
3
4
5
6
7
8
9
function(enable_coverage TARGET)
    target_compile_options("${TARGET}" PUBLIC
        "$<$<AND:$<CXX_COMPILER_ID:GNU,Clang>,$<CONFIG:Debug>>:-fcondition-coverage>"
        "$<$<AND:$<CXX_COMPILER_ID:GNU,Clang>,$<CONFIG:Debug>>:--coverage>"
    )
    target_link_options("${TARGET}" PUBLIC
        "$<$<AND:$<CXX_COMPILER_ID:GNU,Clang>,$<CONFIG:Debug>>:--coverage>"
    )
endfunction()