Skip to content

Commit

Permalink
Fixed code coverage option typo in CMakeLists.txt
Browse files Browse the repository at this point in the history
It appears that a typo was introduced in CMakeLists.txt over 2 years ago in commit a453526 that effectively disabled the code coverage option. I fixed it.
  • Loading branch information
jonathanmarvens authored May 13, 2024
1 parent 6047e26 commit d97407e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ add_custom_target(

include_directories(src)

option(c "Enable code coverage instrumentation" OFF)
option(COVERAGE "Enable code coverage instrumentation" OFF)
if(COVERAGE)
message("Configuring code coverage instrumentation")
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
Expand Down

0 comments on commit d97407e

Please sign in to comment.