blob: ddb33af7ca730f27e0c4614e0b63f9f43a297cdc (
plain)
1
2
3
4
5
6
7
8
9
|
function(enable_coverage TARGET)
target_compile_options("${TARGET}" PUBLIC
"$<$<CXX_COMPILER_ID:GNU,Clang>:-fcondition-coverage>"
"$<$<CXX_COMPILER_ID:GNU,Clang>:--coverage>"
)
target_link_options("${TARGET}" PUBLIC
"$<$<CXX_COMPILER_ID:GNU,Clang>:--coverage>"
)
endfunction()
|