1
- # Doxyfile 1.6.1
1
+ # Doxyfile 1.6.3
2
2
3
3
# This file describes the settings to be used by the documentation system
4
4
# doxygen (www.doxygen.org) for a project
@@ -397,6 +397,12 @@ HIDE_SCOPE_NAMES = NO
397
397
398
398
SHOW_INCLUDE_FILES = YES
399
399
400
+ # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
401
+ # will list include files with double quotes in the documentation
402
+ # rather than with sharp brackets.
403
+
404
+ FORCE_LOCAL_INCLUDES = NO
405
+
400
406
# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
401
407
# is inserted in the documentation for inline members.
402
408
@@ -584,7 +590,7 @@ WARN_LOGFILE =
584
590
# directories like "/usr/src/myproject". Separate the files or directories
585
591
# with spaces.
586
592
587
- INPUT = ../xbmc/utils \
593
+ INPUT = ../xbmc \
588
594
../guilib \
589
595
.
590
596
@@ -645,7 +651,8 @@ RECURSIVE = YES
645
651
# excluded from the INPUT source files. This way you can easily exclude a
646
652
# subdirectory from a directory tree whose root is specified with the INPUT tag.
647
653
648
- EXCLUDE = ../guilib/tinyXML
654
+ EXCLUDE = ../guilib/tinyXML \
655
+ ../xbmc/lib
649
656
650
657
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
651
658
# directories that are symbolic links (a Unix filesystem feature) are excluded
@@ -659,7 +666,11 @@ EXCLUDE_SYMLINKS = NO
659
666
# against the file with absolute path, so to exclude all test directories
660
667
# for example use the pattern */test/*
661
668
662
- EXCLUDE_PATTERNS = */.svn/*
669
+ EXCLUDE_PATTERNS = */.svn/* \
670
+ */.svn \
671
+ */lib*/* \
672
+ */*Codec/* \
673
+ doxygen.hpp
663
674
664
675
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
665
676
# (namespaces, classes, functions, etc.) that should be excluded from the
@@ -840,6 +851,12 @@ HTML_FOOTER =
840
851
841
852
HTML_STYLESHEET =
842
853
854
+ # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
855
+ # page will contain the date and time when the page was generated. Setting
856
+ # this to NO can help when comparing the output of multiple runs.
857
+
858
+ HTML_TIMESTAMP = YES
859
+
843
860
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
844
861
# files or namespaces will be aligned in HTML using tables. If set to
845
862
# NO a bullet list will be used.
@@ -941,7 +958,7 @@ QCH_FILE =
941
958
# Qt Help Project output. For more information please see
942
959
# http://doc.trolltech.com/qthelpproject.html#namespace
943
960
944
- QHP_NAMESPACE =
961
+ QHP_NAMESPACE = org.doxygen.Project
945
962
946
963
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
947
964
# Qt Help Project output. For more information please see
@@ -973,6 +990,23 @@ QHP_SECT_FILTER_ATTRS =
973
990
974
991
QHG_LOCATION =
975
992
993
+ # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
994
+ # will be generated, which together with the HTML files, form an Eclipse help
995
+ # plugin. To install this plugin and make it available under the help contents
996
+ # menu in Eclipse, the contents of the directory containing the HTML and XML
997
+ # files needs to be copied into the plugins directory of eclipse. The name of
998
+ # the directory within the plugins directory should be the same as
999
+ # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
1000
+ # the help appears.
1001
+
1002
+ GENERATE_ECLIPSEHELP = NO
1003
+
1004
+ # A unique identifier for the eclipse help plugin. When installing the plugin
1005
+ # the directory name containing the HTML and XML files should also have
1006
+ # this name.
1007
+
1008
+ ECLIPSE_DOC_ID = org.doxygen.Project
1009
+
976
1010
# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
977
1011
# top of each HTML page. The value NO (the default) enables the index and
978
1012
# the value YES disables it.
@@ -1013,15 +1047,26 @@ TREEVIEW_WIDTH = 250
1013
1047
1014
1048
FORMULA_FONTSIZE = 10
1015
1049
1016
- # When the SEARCHENGINE tag is enable doxygen will generate a search box
1050
+ # When the SEARCHENGINE tag is enabled doxygen will generate a search box
1017
1051
# for the HTML output. The underlying search engine uses javascript
1018
1052
# and DHTML and should work on any modern browser. Note that when using
1019
- # HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP)
1020
- # there is already a search function so this one should typically
1021
- # be disabled.
1053
+ # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
1054
+ # (GENERATE_DOCSET) there is already a search function so this one should
1055
+ # typically be disabled. For large projects the javascript based search engine
1056
+ # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
1022
1057
1023
1058
SEARCHENGINE = NO
1024
1059
1060
+ # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1061
+ # implemented using a PHP enabled web server instead of at the web client
1062
+ # using Javascript. Doxygen will generate the search PHP script and index
1063
+ # file to put on the web server. The advantage of the server
1064
+ # based approach is that it scales better to large projects and allows
1065
+ # full text search. The disadvances is that it is more difficult to setup
1066
+ # and does not have live searching capabilities.
1067
+
1068
+ SERVER_BASED_SEARCH = NO
1069
+
1025
1070
#---------------------------------------------------------------------------
1026
1071
# configuration options related to the LaTeX output
1027
1072
#---------------------------------------------------------------------------
@@ -1038,7 +1083,10 @@ GENERATE_LATEX = NO
1038
1083
LATEX_OUTPUT = latex
1039
1084
1040
1085
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1041
- # invoked. If left blank `latex' will be used as the default command name.
1086
+ # invoked. If left blank `latex' will be used as the default command name.
1087
+ # Note that when enabling USE_PDFLATEX this option is only used for
1088
+ # generating bitmaps for formulas in the HTML output, but not in the
1089
+ # Makefile that is written to the output directory.
1042
1090
1043
1091
LATEX_CMD_NAME = latex
1044
1092
0 commit comments