From 70a107537f7811e0be8b71fc269335cf5edf224a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 27 Dec 2022 19:22:56 +0100 Subject: Exclude generated, Wayland specific files from Doxygen docs Some Wayland specific files are generated by the build process with configure + make in the source tree. These files are now ignored by the Doxygen documentation process. --- documentation/Doxyfile.in | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'documentation/Doxyfile.in') diff --git a/documentation/Doxyfile.in b/documentation/Doxyfile.in index 4d4529fd7..0ab78f33b 100644 --- a/documentation/Doxyfile.in +++ b/documentation/Doxyfile.in @@ -631,9 +631,15 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = */src/*_win32.cxx -EXCLUDE_PATTERNS += */src/*_mac.cxx -EXCLUDE_PATTERNS += */src/*_x.cxx +EXCLUDE_PATTERNS = @FLTK_SOURCE_DIR@/src/*_win32.cxx +EXCLUDE_PATTERNS += @FLTK_SOURCE_DIR@/src/*_mac.cxx +EXCLUDE_PATTERNS += @FLTK_SOURCE_DIR@/src/*_x.cxx + +# Exclude Wayland specific files that are generated in the source tree +# by configure + make + +EXCLUDE_PATTERNS += @FLTK_SOURCE_DIR@/src/xdg* +EXCLUDE_PATTERNS += @FLTK_SOURCE_DIR@/src/text-input* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the -- cgit v1.2.3