@@ -148,7 +148,7 @@ INLINE_INHERITED_MEMB = NO
148148# shortest path that makes the file name unique will be used
149149# The default value is: YES.
150150
151- FULL_PATH_NAMES = NO
151+ FULL_PATH_NAMES = YES
152152
153153# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
154154# Stripping is only done if one of the specified strings matches the left-hand
@@ -160,7 +160,7 @@ FULL_PATH_NAMES = NO
160160# will be relative from the directory where doxygen is started.
161161# This tag requires that the tag FULL_PATH_NAMES is set to YES.
162162
163- STRIP_FROM_PATH =
163+ STRIP_FROM_PATH = "@PROJECT_SOURCE_DIR@/src"
164164
165165# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
166166# path mentioned in the documentation of a class, which tells the reader which
@@ -169,7 +169,7 @@ STRIP_FROM_PATH =
169169# specify the list of include paths that are normally passed to the compiler
170170# using the -I flag.
171171
172- STRIP_FROM_INC_PATH =
172+ STRIP_FROM_INC_PATH = "@PROJECT_SOURCE_DIR@/src"
173173
174174# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
175175# less readable) file names. This can be useful is your file systems doesn't
@@ -803,9 +803,9 @@ WARN_LOGFILE =
803803# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
804804# Note: If this tag is empty the current directory is searched.
805805
806- INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/include " \
807- "@CMAKE_CURRENT_SOURCE_DIR@/src " \
808- "@CMAKE_CURRENT_SOURCE_DIR@/doc "
806+ INPUT = "@PROJECT_SOURCE_DIR@/src " \
807+ "@PROJECT_SOURCE_DIR@/doc " \
808+ "@PROJECT_BINARY_DIR@/src/OpenShotVersion.h "
809809
810810
811811# This tag can be used to specify the character encoding of the source files
@@ -862,11 +862,7 @@ EXCLUDE_SYMLINKS = NO
862862# Note that the wildcards are matched against the file with absolute path, so to
863863# exclude all test directories for example use the pattern */test/*
864864
865- EXCLUDE_PATTERNS = "*/.*" \
866- "*/.*/*" \
867- "*/src/examples/*" \
868- "*/src/bindings/*" \
869- "*.py"
865+ EXCLUDE_PATTERNS =
870866
871867# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
872868# (namespaces, classes, functions, etc.) that should be excluded from the
@@ -883,27 +879,27 @@ EXCLUDE_SYMBOLS =
883879# that contain example code fragments that are included (see the \include
884880# command).
885881
886- EXAMPLE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/tests "
882+ EXAMPLE_PATH = "@PROJECT_SOURCE_DIR@/examples "
887883
888884# If the value of the EXAMPLE_PATH tag contains directories, you can use the
889885# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
890886# *.h) to filter out the source-files in the directories. If left blank all
891887# files are included.
892888
893- EXAMPLE_PATTERNS =
889+ EXAMPLE_PATTERNS = "*.cpp"
894890
895891# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
896892# searched for input files to be used with the \include or \dontinclude commands
897893# irrespective of the value of the RECURSIVE tag.
898894# The default value is: NO.
899895
900- EXAMPLE_RECURSIVE = NO
896+ EXAMPLE_RECURSIVE = YES
901897
902898# The IMAGE_PATH tag can be used to specify one or more files or directories
903899# that contain images that are to be included in the documentation (see the
904900# \image command).
905901
906- IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR @"
902+ IMAGE_PATH = "@PROJECT_SOURCE_DIR @"
907903
908904# The INPUT_FILTER tag can be used to specify a program that doxygen should
909905# invoke to filter for each input file. Doxygen will invoke the filter program
@@ -2086,7 +2082,7 @@ INCLUDE_PATH =
20862082# used.
20872083# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20882084
2089- INCLUDE_FILE_PATTERNS =
2085+ INCLUDE_FILE_PATTERNS = "*.h"
20902086
20912087# The PREDEFINED tag can be used to specify one or more macro names that are
20922088# defined before the preprocessor is started (similar to the -D option of e.g.
0 commit comments