mirror of
https://github.com/BlackMATov/enum.hpp.git
synced 2025-12-13 06:59:45 +07:00
10 lines
216 B
CMake
10 lines
216 B
CMake
# https://clang.llvm.org/docs/SourceBasedCodeCoverage.html
|
|
|
|
add_library(enable_gcov INTERFACE)
|
|
|
|
target_compile_options(enable_gcov INTERFACE
|
|
--coverage)
|
|
|
|
target_link_options(enable_gcov INTERFACE
|
|
--coverage)
|