Skip to content

Commit

Permalink
Simplify Doxygen config file
Browse files Browse the repository at this point in the history
This uses more CMake variables to simplify the Doxygen config file and
also changes some settings to create more documentation.

Signed-off-by: Ed Beroset <[email protected]>
  • Loading branch information
beroset committed Feb 16, 2024
1 parent 56bd948 commit 325ca44
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/doxygen.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ ABBREVIATE_BRIEF = "The $name class" \
# description.
# The default value is: NO.

ALWAYS_DETAILED_SEC = NO
ALWAYS_DETAILED_SEC = YES

# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
# inherited members of a class in the documentation of that class as if those
# members were ordinary class members. Constructors, destructors and assignment
# operators of the base classes will not be shown.
# The default value is: NO.

INLINE_INHERITED_MEMB = NO
INLINE_INHERITED_MEMB = YES

# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
# before files name in the file list and in the header files. If set to NO the
Expand Down Expand Up @@ -413,7 +413,7 @@ INLINE_GROUPED_CLASSES = NO
# Man pages) or section (for LaTeX and RTF).
# The default value is: NO.

INLINE_SIMPLE_STRUCTS = NO
INLINE_SIMPLE_STRUCTS = YES

# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
# enum is documented as struct, union, or enum with the name of the typedef. So
Expand Down Expand Up @@ -807,8 +807,8 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT = @autoproject_SOURCE_DIR@/doc/ \
@autoproject_SOURCE_DIR@/src/
INPUT = @CMAKE_SOURCE_DIR@/doc/ \
@CMAKE_SOURCE_DIR@/src/

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down

0 comments on commit 325ca44

Please sign in to comment.