From edb9cb31a59260f83e6f3cbb8287bf25e2ad59b4 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Sat, 12 Jan 2019 14:59:33 -0700 Subject: [PATCH] CMake: Exclude .c files from Interrogate --- cmake/macros/Interrogate.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/macros/Interrogate.cmake b/cmake/macros/Interrogate.cmake index 5c84d048fc..25e53e9cfb 100644 --- a/cmake/macros/Interrogate.cmake +++ b/cmake/macros/Interrogate.cmake @@ -24,6 +24,7 @@ endif() set(INTERROGATE_EXCLUDE_REGEXES ".*\\.I$" ".*\\.N$" + ".*\\.c$" ".*\\.lxx$" ".*\\.yxx$" ".*_src\\..*")