Skip to content

Commit

Permalink
Fixed doxygen excluded files and path stripping (#250)
Browse files Browse the repository at this point in the history
* updated doxygen excludes

* fixed doxygen stripping paths to generated files
  • Loading branch information
m-fila authored Jan 12, 2024
1 parent 667e194 commit 562d0a0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ FULL_PATH_NAMES = YES
# 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

# 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,6 +155,7 @@ STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@ @PROJECT_BINARY_DIR@
# using the -I flag.

STRIP_FROM_INC_PATH = @DOXYGEN_INCLUDE_DIRS@ @PROJECT_BINARY_DIR@/include
STRIP_FROM_INC_PATH += @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 @@ -785,7 +787,7 @@ RECURSIVE = YES
# Note that relative paths are relative to the directory from which doxygen is
# run.

EXCLUDE =
EXCLUDE = @PROJECT_BINARY_DIR@ @CMAKE_INSTALL_PREFIX@

# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
Expand All @@ -801,7 +803,8 @@ EXCLUDE_SYMLINKS = NO
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*

EXCLUDE_PATTERNS = */podio/* */TrickTrack/* */tests/* */dict/* */cmake/* @PROJECT_BINARY_DIR@
EXCLUDE_PATTERNS = */podio/* */test/* */tests/*
EXCLUDE_PATTERNS += */dict/* */cmake/* */scripts/*

# 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 Down

0 comments on commit 562d0a0

Please sign in to comment.