1- # Doxyfile 1.8.10
1+ # Doxyfile 1.8.13
22
33# This file describes the settings to be used by the documentation system
44# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = "Experimental Platformer AI"
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER = v4.2.0-Beta.6
41+ PROJECT_NUMBER = v5.1.1
4242
4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444# for a project that appears at the top of each page and should give viewer a
@@ -303,6 +303,15 @@ EXTENSION_MAPPING =
303303
304304MARKDOWN_SUPPORT = YES
305305
306+ # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
307+ # to that level are automatically included in the table of contents, even if
308+ # they do not have an id attribute.
309+ # Note: This feature currently applies only to Markdown headings.
310+ # Minimum value: 0, maximum value: 99, default value: 0.
311+ # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
312+
313+ TOC_INCLUDE_HEADINGS = 0
314+
306315# When enabled doxygen tries to link words that correspond to documented
307316# classes, or namespaces to their corresponding documentation. Such a link can
308317# be prevented in individual cases by putting a % sign in front of the word or
@@ -749,6 +758,12 @@ WARN_IF_DOC_ERROR = YES
749758
750759WARN_NO_PARAMDOC = NO
751760
761+ # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
762+ # a warning is encountered.
763+ # The default value is: NO.
764+
765+ WARN_AS_ERROR = NO
766+
752767# The WARN_FORMAT tag determines the format of the warning messages that doxygen
753768# can produce. The string should contain the $file, $line, and $text tags, which
754769# will be replaced by the file and line number from which the warning originated
@@ -798,8 +813,8 @@ INPUT_ENCODING = UTF-8
798813# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
799814# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
800815# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
801- # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.f90 , *.f , *.for , *.tcl , *.vhd ,
802- # *.vhdl , *.ucf , *.qsf , *.as and *.js .
816+ # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw , *.f90 , *.f95 , *.f03 , *.f08 ,
817+ # *.f , *.for , *.tcl , *.vhd, *.vhdl, *.ucf and *.qsf .
803818
804819FILE_PATTERNS = *.c \
805820 *.cc \
@@ -929,6 +944,10 @@ IMAGE_PATH = ..\..\Images
929944# Note that the filter must not add or remove lines; it is applied before the
930945# code is scanned, but not when the output code is generated. If lines are added
931946# or removed, the anchors will not be placed correctly.
947+ #
948+ # Note that for custom extensions or not directly supported extensions you also
949+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
950+ # properly processed by doxygen.
932951
933952INPUT_FILTER =
934953
@@ -938,6 +957,10 @@ INPUT_FILTER =
938957# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
939958# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
940959# patterns match the file name, INPUT_FILTER is applied.
960+ #
961+ # Note that for custom extensions or not directly supported extensions you also
962+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
963+ # properly processed by doxygen.
941964
942965FILTER_PATTERNS =
943966
@@ -1055,7 +1078,7 @@ VERBATIM_HEADERS = YES
10551078# rich C++ code for which doxygen's built-in parser lacks the necessary type
10561079# information.
10571080# Note: The availability of this option depends on whether or not doxygen was
1058- # compiled with the --with- libclang option.
1081+ # generated with the -Duse- libclang=ON option for CMake .
10591082# The default value is: NO.
10601083
10611084CLANG_ASSISTED_PARSING = NO
@@ -1811,6 +1834,14 @@ LATEX_SOURCE_CODE = NO
18111834
18121835LATEX_BIB_STYLE = plain
18131836
1837+ # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1838+ # page will contain the date and time when the page was generated. Setting this
1839+ # to NO can help when comparing the output of multiple runs.
1840+ # The default value is: NO.
1841+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1842+
1843+ LATEX_TIMESTAMP = NO
1844+
18141845#---------------------------------------------------------------------------
18151846# Configuration options related to the RTF output
18161847#---------------------------------------------------------------------------
@@ -2404,6 +2435,11 @@ DIAFILE_DIRS =
24042435
24052436PLANTUML_JAR_PATH =
24062437
2438+ # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
2439+ # configuration file for plantuml.
2440+
2441+ PLANTUML_CFG_FILE =
2442+
24072443# When using plantuml, the specified paths are searched for files specified by
24082444# the !include statement in a plantuml block.
24092445
0 commit comments