# SPDX-FileCopyrightText: 2025 Felix Morgner # SPDX-License-Identifier: LGPL-2.1-only function(enable_coverage TARGET) target_compile_options("${TARGET}" PRIVATE "$<$,$>:-fcondition-coverage>" "$<$,$>:--coverage>" ) target_link_libraries("${TARGET}" PRIVATE "gcov" ) endfunction()