Fix cmake error messages for gcov/lcov/etc

This commit is contained in:
Drew DeVault 2016-06-19 12:52:44 -04:00
parent 439d289654
commit 2aaa37b129

View file

@ -14,9 +14,9 @@ if(enable-coverage)
MESSAGE(FATAL_ERROR "gcov not found! Aborting...")
endif()
if(NOT LCOV_PATH)
MESSAGE(FATAL_ERROR "gcov not found! Aborting...")
MESSAGE(FATAL_ERROR "lcov not found! Aborting...")
endif()
if(NOT GENHTML_PATH)
MESSAGE(FATAL_ERROR "gcov not found! Aborting...")
MESSAGE(FATAL_ERROR "genhtml not found! Aborting...")
endif()
endif()