You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code-coverage.cmake
+2-2
Original file line number
Diff line number
Diff line change
@@ -210,7 +210,7 @@ endif()
210
210
# ALL - Adds the target to the 'ccov-all' and 'ccov-all-report' targets, which merge several executable targets coverage data to a single report. Effective on executable targets.
211
211
# EXTERNAL - For GCC's lcov, allows the profiling of 'external' files from the processing directory
212
212
# COVERAGE_TARGET_NAME - For executables ONLY, changes the outgoing target name so instead of `ccov-${TARGET_NAME}` it becomes `ccov-${COVERAGE_TARGET_NAME}`.
213
-
# EXCLUDE <REGEX_PATTERNS> - Excludes files of the patterns provided from coverage. **These do not copy to the 'all' targets.**
213
+
# EXCLUDE <PATTERNS> - Excludes files of the patterns provided from coverage. Note that GCC/lcov excludes by glob pattern, and clang/LLVM excludes via regex! **These do not copy to the 'all' targets.**
214
214
# OBJECTS <TARGETS> - For executables ONLY, if the provided targets are shared libraries, adds coverage information to the output
215
215
# ARGS <ARGUMENTS> - For executables ONLY, appends the given arguments to the associated ccov-* executable call
216
216
# ~~~
@@ -500,7 +500,7 @@ endfunction()
500
500
# use with coverage dashboards (e.g. codecov.io, coveralls).
501
501
# ~~~
502
502
# Optional:
503
-
# EXCLUDE <REGEX_PATTERNS> - Excludes files of the regex patterns provided from coverage.
503
+
# EXCLUDE <PATTERNS> - Excludes files of the patterns provided from coverage. Note that GCC/lcov excludes by glob pattern, and clang/LLVM excludes via regex!
0 commit comments