diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-26 20:21:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-07 07:28:43 -0500 |
commit | 5914addcbc5da7ce2ae4e705090ccefd71f27007 (patch) | |
tree | 3a4bfbdf8f4dcd7a3f20236f33857b0e4d585749 /Doxyfile.in | |
parent | 1d108894e7abd85d2ba0beeb69c0ee6071521a6c (diff) | |
download | tor-5914addcbc5da7ce2ae4e705090ccefd71f27007.tar.gz tor-5914addcbc5da7ce2ae4e705090ccefd71f27007.zip |
Teach doxygen about option-declaration code.
These settings allow doxygen to find and understand doxygen comments
in configuration definitions made using the macros in confdecl.h.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 2e1a6d0c23..a087012c71 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -318,7 +318,7 @@ OPTIMIZE_OUTPUT_SLICE = NO # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. -EXTENSION_MAPPING = dox=C h=C c=C +EXTENSION_MAPPING = dox=C h=C c=C inc=C # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable @@ -845,7 +845,8 @@ INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c \ *.h \ - *.dox + *.dox \ + *.inc # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. @@ -2110,7 +2111,10 @@ INCLUDE_FILE_PATTERNS = PREDEFINED = "MOCK_IMPL(a,b,c)=a b c" \ "MOCK_DECL(a,b,c)=a b c" \ - __attribute__(x)= + __attribute__(x)= \ + "BEGIN_CONF_STRUCT(x)=struct x {" \ + "END_CONF_STRUCT(x)=};" \ + "CONF_VAR(a,b,c,d)=b a;" # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this |