cmake: fix a typo

This commit is contained in:
Christoph Junghans 2020-04-09 05:44:57 -06:00 committed by GitHub
parent b74aabf05c
commit ed0971d663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
option(ENABLE_COVERAGE "Enable collecting code coverage data" OFF)
mark_as_advanced(ENABLE_COVERAGE)
if(ENABLE_COVERAGE)
set (CMAK_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage")
endif()
endif()