From a8d14fe1f07a21a44b52930f021797f06bc91a54 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 7 Apr 2020 17:27:38 -0400 Subject: [PATCH] doxygen: extract everything doxygen has a bug to not extract global enums (see #7730). The only current know option is to change the default to extract everything by setting EXTRACT_ALL=YES. Also add other options while we are here and enable generating documentation for undocumented members/classes. --- doc/doxygen/options.dox.in | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/doxygen/options.dox.in b/doc/doxygen/options.dox.in index c3d5880221..febf5f015b 100644 --- a/doc/doxygen/options.dox.in +++ b/doc/doxygen/options.dox.in @@ -39,12 +39,16 @@ BUILTIN_STL_SUPPORT = YES # Build related configuration options #--------------------------------------------------------------------------- -EXTRACT_ALL = NO +EXTRACT_ALL = YES EXTRACT_PRIVATE = YES EXTRACT_STATIC = YES EXTRACT_LOCAL_CLASSES = YES -HIDE_UNDOC_MEMBERS = YES -HIDE_UNDOC_CLASSES = YES +EXTRACT_PRIVATE = NO +EXTRACT_PRIV_VIRTUAL = NO +EXTRACT_PACKAGE = NO + +HIDE_UNDOC_MEMBERS = NO +HIDE_UNDOC_CLASSES = NO SORT_MEMBER_DOCS = NO SORT_BRIEF_DOCS = NO SORT_BY_SCOPE_NAME = NO -- 2.39.5