1- # Doxyfile 1.8.10
1+ # Doxyfile 1.8.11
22
33# This file describes the settings to be used by the documentation system
44# doxygen (www.doxygen.org) for a project.
@@ -749,6 +749,12 @@ WARN_IF_DOC_ERROR = YES
749749
750750WARN_NO_PARAMDOC = YES
751751
752+ # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
753+ # a warning is encountered.
754+ # The default value is: NO.
755+
756+ WARN_AS_ERROR = NO
757+
752758# The WARN_FORMAT tag determines the format of the warning messages that doxygen
753759# can produce. The string should contain the $file, $line, and $text tags, which
754760# will be replaced by the file and line number from which the warning originated
@@ -777,9 +783,6 @@ WARN_LOGFILE =
777783
778784INPUT = ../../include/ \
779785 ../../README.md \
780- ../Distinction.md \
781- ../Abstraction.md \
782- ../Threading.md \
783786 ../Rationale.md
784787
785788# This tag can be used to specify the character encoding of the source files
@@ -802,8 +805,8 @@ INPUT_ENCODING = UTF-8
802805# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
803806# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
804807# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
805- # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.f90 , *.f , *.for , *.tcl , *.vhd ,
806- # *.vhdl, *.ucf, *.qsf, *.as and *.js.
808+ # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw , *.f90 , *.f , *.for , *.tcl ,
809+ # *.vhd, *. vhdl, *.ucf, *.qsf, *.as and *.js.
807810
808811FILE_PATTERNS = *.c \
809812 *.cc \
@@ -932,6 +935,10 @@ IMAGE_PATH =
932935# Note that the filter must not add or remove lines; it is applied before the
933936# code is scanned, but not when the output code is generated. If lines are added
934937# or removed, the anchors will not be placed correctly.
938+ #
939+ # Note that for custom extensions or not directly supported extensions you also
940+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
941+ # properly processed by doxygen.
935942
936943INPUT_FILTER =
937944
@@ -941,6 +948,10 @@ INPUT_FILTER =
941948# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
942949# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
943950# patterns match the file name, INPUT_FILTER is applied.
951+ #
952+ # Note that for custom extensions or not directly supported extensions you also
953+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
954+ # properly processed by doxygen.
944955
945956FILTER_PATTERNS =
946957
@@ -1058,7 +1069,7 @@ VERBATIM_HEADERS = YES
10581069# rich C++ code for which doxygen's built-in parser lacks the necessary type
10591070# information.
10601071# Note: The availability of this option depends on whether or not doxygen was
1061- # compiled with the --with- libclang option.
1072+ # generated with the -Duse- libclang=ON option for CMake .
10621073# The default value is: NO.
10631074
10641075CLANG_ASSISTED_PARSING = NO
@@ -1802,6 +1813,14 @@ LATEX_SOURCE_CODE = NO
18021813
18031814LATEX_BIB_STYLE = plain
18041815
1816+ # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1817+ # page will contain the date and time when the page was generated. Setting this
1818+ # to NO can help when comparing the output of multiple runs.
1819+ # The default value is: NO.
1820+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1821+
1822+ LATEX_TIMESTAMP = NO
1823+
18051824#---------------------------------------------------------------------------
18061825# Configuration options related to the RTF output
18071826#---------------------------------------------------------------------------
0 commit comments