1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

small readme and cmake cleanup (#6)

* small readme and cmake cleanup

* wording
This commit is contained in:
Lars Melchior 2020-04-14 15:46:15 +02:00 committed by GitHub
parent 23abf01c55
commit adf2801be6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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()