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