Skip to content

Commit

Permalink
Be more explicit about inputs and path stripping
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Mar 20, 2024
1 parent 0e91f93 commit ad5fe3c
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,9 @@ FULL_PATH_NAMES = YES
# will be relative from the directory where doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.

STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@ @PROJECT_BINARY_DIR@
STRIP_FROM_PATH += @PROJECT_SOURCE_DIR@/edm4hep
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@/include \
@PROJECT_SOURCE_DIR@/utils/include \
@PROJECT_SOURCE_DIR@/edm4hep

# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
Expand All @@ -154,8 +155,10 @@ STRIP_FROM_PATH += @PROJECT_SOURCE_DIR@/edm4hep
# specify the list of include paths that are normally passed to the compiler
# using the -I flag.

STRIP_FROM_INC_PATH = @DOXYGEN_INCLUDE_DIRS@ @PROJECT_BINARY_DIR@/include
STRIP_FROM_INC_PATH += @PROJECT_SOURCE_DIR@/edm4hep
STRIP_FROM_INC_PATH = @PROJECT_SOURCE_DIR@/include \
@PROJECT_SOURCE_DIR@/utils/include \
@PROJECT_SOURCE_DIR@/edm4hep


# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
# less readable) file names. This can be useful is your file systems doesn't
Expand Down Expand Up @@ -745,9 +748,9 @@ WARN_LOGFILE = @PROJECT_BINARY_DIR@/doxygen-warnings.log
# spaces.
# Note: If this tag is empty the current directory is searched.

INPUT = @PROJECT_SOURCE_DIR@
INPUT += @PROJECT_BINARY_DIR@/include
INPUT += @CMAKE_CURRENT_BINARY_DIR@
INPUT = @PROJECT_SOURCE_DIR@/edm4hep \
@PROJECT_SOURCE_DIR@/utils/include \
@PROJECT_SOURCE_DIR@/include

# 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 Expand Up @@ -805,6 +808,7 @@ EXCLUDE_SYMLINKS = NO

EXCLUDE_PATTERNS = */podio/* */test/* */tests/*
EXCLUDE_PATTERNS += */dict/* */cmake/* */scripts/*
EXCLUDE_PATTERNS += */edm4hep/src/*

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
Expand All @@ -815,7 +819,7 @@ EXCLUDE_PATTERNS += */dict/* */cmake/* */scripts/*
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories use the pattern */test/*

EXCLUDE_SYMBOLS =
EXCLUDE_SYMBOLS = podio

# The EXAMPLE_PATH tag can be used to specify one or more files or directories
# that contain example code fragments that are included (see the \include
Expand Down

0 comments on commit ad5fe3c

Please sign in to comment.