##// END OF EJS Templates
Updated doxyfile
jeandet -
r77:2cc8cfdb3cc9 dev_alexis
parent child
Show More
@@ -20,4 +20,5 Makefile.*
20 20 *.out
21 21 *.prl
22 22 *.dfu
23
23 mkspecs/default/qmake.conf
24 mkspecs/default/qplatformdefs.h
@@ -171,7 +171,7 JAVADOC_AUTOBRIEF = NO
171 171 # will behave just like regular Qt-style comments (thus requiring
172 172 # an explicit \brief command for a brief description.)
173 173
174 QT_AUTOBRIEF = NO
174 QT_AUTOBRIEF = YES
175 175
176 176 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
177 177 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
@@ -455,13 +455,13 INTERNAL_DOCS = NO
455 455 # in case and if your file system supports case sensitive file names. Windows
456 456 # and Mac users are advised to set this option to NO.
457 457
458 CASE_SENSE_NAMES = NO
458 CASE_SENSE_NAMES = YES
459 459
460 460 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
461 461 # will show members with their full class and namespace scopes in the
462 462 # documentation. If set to YES the scope will be hidden.
463 463
464 HIDE_SCOPE_NAMES = YES
464 HIDE_SCOPE_NAMES = NO
465 465
466 466 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
467 467 # will put a list of the files that are included by a file in the documentation
@@ -527,7 +527,7 SORT_BY_SCOPE_NAME = NO
527 527 # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
528 528 # will still accept a match between prototype and implementation in such cases.
529 529
530 STRICT_PROTO_MATCHING = NO
530 STRICT_PROTO_MATCHING = YES
531 531
532 532 # The GENERATE_TODOLIST tag can be used to enable (YES) or
533 533 # disable (NO) the todo list. This list is created by putting \todo
@@ -677,7 +677,8 WARN_LOGFILE =
677 677 # directories like "/usr/src/myproject". Separate the files or directories
678 678 # with spaces.
679 679
680 INPUT = include
680 INPUT = include \
681 src
681 682
682 683 # This tag can be used to specify the character encoding of the source files
683 684 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -742,7 +743,10 RECURSIVE = YES
742 743 # Note that relative paths are relative to the directory from which doxygen is
743 744 # run.
744 745
745 EXCLUDE =
746 EXCLUDE = src/stm32f4/CPU/CMSIS \
747 src/stm32f4/CPU/STM32F4xx_StdPeriph_Driver \
748 src/stm32f4/CPU/USB \
749 src/lpc17XX
746 750
747 751 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
748 752 # directories that are symbolic links (a Unix file system feature) are excluded
@@ -1013,7 +1017,7 HTML_TIMESTAMP = YES
1013 1017 # documentation will contain sections that can be hidden and shown after the
1014 1018 # page has loaded.
1015 1019
1016 HTML_DYNAMIC_SECTIONS = NO
1020 HTML_DYNAMIC_SECTIONS = YES
1017 1021
1018 1022 # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of
1019 1023 # entries shown in the various tree structured indices initially; the user
@@ -1112,25 +1116,25 TOC_EXPAND = NO
1112 1116 # that can be used as input for Qt's qhelpgenerator to generate a
1113 1117 # Qt Compressed Help (.qch) of the generated HTML documentation.
1114 1118
1115 GENERATE_QHP = NO
1119 GENERATE_QHP = YES
1116 1120
1117 1121 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can
1118 1122 # be used to specify the file name of the resulting .qch file.
1119 1123 # The path specified is relative to the HTML output folder.
1120 1124
1121 QCH_FILE =
1125 QCH_FILE = ../../qthelp/libuc2.qch
1122 1126
1123 1127 # The QHP_NAMESPACE tag specifies the namespace to use when generating
1124 1128 # Qt Help Project output. For more information please see
1125 1129 # http://doc.trolltech.com/qthelpproject.html#namespace
1126 1130
1127 QHP_NAMESPACE = org.doxygen.Project
1131 QHP_NAMESPACE =
1128 1132
1129 1133 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
1130 1134 # Qt Help Project output. For more information please see
1131 1135 # http://doc.trolltech.com/qthelpproject.html#virtual-folders
1132 1136
1133 QHP_VIRTUAL_FOLDER = doc
1137 QHP_VIRTUAL_FOLDER = libuc2
1134 1138
1135 1139 # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
1136 1140 # add. For more information please see
@@ -1158,7 +1162,7 QHP_SECT_FILTER_ATTRS =
1158 1162 # If non-empty doxygen will try to run qhelpgenerator on the generated
1159 1163 # .qhp file.
1160 1164
1161 QHG_LOCATION =
1165 QHG_LOCATION = qhelpgenerator
1162 1166
1163 1167 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
1164 1168 # will be generated, which together with the HTML files, form an Eclipse help
General Comments 0
You need to be logged in to leave comments. Login now