From 22883afee0645178cdc03baf1e1f7582c9adb344 Mon Sep 17 00:00:00 2001 From: Pascal Horton Date: Thu, 13 Jun 2024 15:51:57 +0200 Subject: [PATCH] Fixing coverage exclude path. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0cc94c2..aafb6760 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,7 +154,7 @@ if (USE_CODECOV) setup_target_for_coverage_lcov( NAME code-coverage EXECUTABLE UnitTests - EXCLUDE "/usr/*" "test/*" "_deps/*" "bin/*" "*/lib/*" "*/include/*" "*/.conan/*" "${PROJECT_SOURCE_DIR}/tests/src/*" "${CMAKE_BINARY_DIR}/_deps/*" + EXCLUDE "/usr/*" "test/*" "_deps/*" "bin/*" "*/lib/*" "*/include/*" "*/.conan/*" "${PROJECT_SOURCE_DIR}/test/src/*" "${CMAKE_BINARY_DIR}/_deps/*" DEPENDENCIES UnitTests) endif (USE_CODECOV)