diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-12-27 19:22:56 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-12-27 19:22:56 +0100 |
| commit | 70a107537f7811e0be8b71fc269335cf5edf224a (patch) | |
| tree | 8f2d38ef1e5f5024179c15a5bf67fb53efcf006f | |
| parent | e73b2da5e441f8d9f56ee7c1a9e9cbda269653bf (diff) | |
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.
| -rw-r--r-- | documentation/Doxyfile.in | 12 |
1 files changed, 9 insertions, 3 deletions
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 |
