Skip to content
Snippets Groups Projects

fix windows build

Closed Timm Fitschen requested to merge f-fix-windows-build into dev
26 files
+ 288
243
Compare changes
  • Side-by-side
  • Inline
Files
26
+ 12
0
@@ -136,6 +136,18 @@
@@ -136,6 +136,18 @@
include(CMakeParseArguments)
include(CMakeParseArguments)
option(CODE_COVERAGE_VERBOSE "Verbose information" FALSE)
option(CODE_COVERAGE_VERBOSE "Verbose information" FALSE)
 
option(SKIP_CODE_COVERAGE "Skip code coverage" OFF)
 
 
if (SKIP_CODE_COVERAGE)
 
return()
 
endif()
 
 
find_library(covlib NAMES gcov lcov)
 
message(STATUS "covlib: >${covlib}<")
 
if (${covlib} STREQUAL "covlib-NOTFOUND")
 
message(STATUS "lcov or gcov libraries not found, skipping code coverage.")
 
return()
 
endif()
# Check prereqs
# Check prereqs
find_program( GCOV_PATH gcov )
find_program( GCOV_PATH gcov )
Loading