1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-05 16:31:01 +02:00

small readme and cmake cleanup

This commit is contained in:
Lars Melchior 2020-04-14 15:43:29 +02:00
parent 23abf01c55
commit 5ecdbfcb67
2 changed files with 12 additions and 13 deletions

View file

@ -54,7 +54,7 @@ ADD_TEST(GreeterTests GreeterTests)
# ---- code coverage ----
if (${ENABLE_TEST_COVERAGE})
if (ENABLE_TEST_COVERAGE)
set_target_properties(Greeter PROPERTIES CXX_STANDARD 17 COMPILE_FLAGS "-O0 -g -fprofile-arcs -ftest-coverage --coverage")
target_link_options(Greeter PUBLIC "--coverage")
endif()