doxygen.conf 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. c# Doxyfile 1.8.8
  2. #---------------------------------------------------------------------------
  3. # Project related configuration options
  4. #---------------------------------------------------------------------------
  5. DOXYFILE_ENCODING = UTF-8
  6. PROJECT_NAME = "ManaPlus"
  7. PROJECT_NUMBER =
  8. PROJECT_BRIEF =
  9. PROJECT_LOGO = data/icons/manaplus.png
  10. OUTPUT_DIRECTORY = doxygen
  11. CREATE_SUBDIRS = NO
  12. ALLOW_UNICODE_NAMES = NO
  13. OUTPUT_LANGUAGE = English
  14. BRIEF_MEMBER_DESC = YES
  15. REPEAT_BRIEF = YES
  16. ABBREVIATE_BRIEF =
  17. ALWAYS_DETAILED_SEC = NO
  18. INLINE_INHERITED_MEMB = NO
  19. FULL_PATH_NAMES = YES
  20. SHORT_NAMES = NO
  21. # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
  22. # first line (until the first dot) of a Javadoc-style comment as the brief
  23. # description. If set to NO, the Javadoc-style will behave just like regular Qt-
  24. # style comments (thus requiring an explicit @brief command for a brief
  25. # description.)
  26. # The default value is: NO.
  27. JAVADOC_AUTOBRIEF = NO
  28. # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
  29. # line (until the first dot) of a Qt-style comment as the brief description. If
  30. # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
  31. # requiring an explicit \brief command for a brief description.)
  32. # The default value is: NO.
  33. QT_AUTOBRIEF = NO
  34. MULTILINE_CPP_IS_BRIEF = NO
  35. # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
  36. # documentation from any documented member that it re-implements.
  37. # The default value is: YES.
  38. INHERIT_DOCS = YES
  39. SEPARATE_MEMBER_PAGES = NO
  40. TAB_SIZE = 8
  41. # This tag can be used to specify a number of aliases that act as commands in
  42. # the documentation. An alias has the form:
  43. # name=value
  44. # For example adding
  45. # "sideeffect=@par Side Effects:\n"
  46. # will allow you to put the command \sideeffect (or @sideeffect) in the
  47. # documentation, which will result in a user-defined paragraph with heading
  48. # "Side Effects:". You can put \n's in the value part of an alias to insert
  49. # newlines.
  50. ALIASES =
  51. TCL_SUBST =
  52. OPTIMIZE_OUTPUT_FOR_C = YES
  53. OPTIMIZE_OUTPUT_JAVA = NO
  54. OPTIMIZE_FOR_FORTRAN = NO
  55. OPTIMIZE_OUTPUT_VHDL = NO
  56. EXTENSION_MAPPING = h=C
  57. MARKDOWN_SUPPORT = YES
  58. # When enabled doxygen tries to link words that correspond to documented
  59. # classes, or namespaces to their corresponding documentation. Such a link can
  60. # be prevented in individual cases by by putting a % sign in front of the word
  61. # or globally by setting AUTOLINK_SUPPORT to NO.
  62. # The default value is: YES.
  63. AUTOLINK_SUPPORT = YES
  64. BUILTIN_STL_SUPPORT = NO
  65. CPP_CLI_SUPPORT = NO
  66. SIP_SUPPORT = NO
  67. IDL_PROPERTY_SUPPORT = NO
  68. # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
  69. # tag is set to YES, then doxygen will reuse the documentation of the first
  70. # member in the group (if any) for the other members of the group. By default
  71. # all members of a group must be documented explicitly.
  72. # The default value is: NNO
  73. DISTRIBUTE_GROUP_DOC = NO
  74. # Set the SUBGROUPING tag to YES to allow class member groups of the same type
  75. # (for instance a group of public functions) to be put as a subgroup of that
  76. # type (e.g. under the Public Functions section). Set it to NO to prevent
  77. # subgrouping. Alternatively, this can be done per class using the
  78. # \nosubgrouping command.
  79. # The default value is: YENO
  80. SUBGROUPING = YES
  81. # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
  82. # are shown inside the group in which they are included (e.g. using \ingroup)
  83. # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
  84. # and RTF).
  85. #
  86. # Note that this feature does not work in combination with
  87. # SEPARATE_MEMBER_PAGES.
  88. # The default value is: NNO
  89. INLINE_GROUPED_CLASSES = NO
  90. # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
  91. # with only public data fields or simple typedef fields will be shown inline in
  92. # the documentation of the scope in which they are defined (i.e. file,
  93. # namespace, or group documentation), provided this scope is documented. If set
  94. # to NO, structs, classes, and unions are shown on a separate page (for HTML and
  95. # Man pages) or section (for LaTeX and RTF).
  96. # The default value is: NNO
  97. INLINE_SIMPLE_STRUCTS = NO
  98. TYPEDEF_HIDES_STRUCT = NO
  99. # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
  100. # cache is used to resolve symbols given their name and scope. Since this can be
  101. # an expensive process and often the same symbol appears multiple times in the
  102. # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
  103. # doxygen will become slower. If the cache is too large, memory is wasted. The
  104. # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
  105. # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
  106. # symbols. At the end of a run doxygen will report the cache usage and suggest
  107. # the optimal cache size from a speed point of view.
  108. # Minimum value: 0, maximum value: 9, default value: 0.
  109. LOOKUP_CACHE_SIZE = 0
  110. #---------------------------------------------------------------------------
  111. # Build related configuration options
  112. #---------------------------------------------------------------------------
  113. # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
  114. # documentation are documented, even if no documentation was available. Private
  115. # class members and static file members will be hidden unless the
  116. # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
  117. # Note: This will also disable the warnings about undocumented members that are
  118. # normally produced when WARNINGS is set to YES.
  119. # The default value is: NO.
  120. EXTRACT_ALL = YES
  121. EXTRACT_PRIVATE = YES
  122. # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
  123. # scope will be included in the documentation.
  124. # The default value is: NO.
  125. EXTRACT_PACKAGE = NO
  126. EXTRACT_STATIC = YES
  127. # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
  128. # locally in source files will be included in the documentation. If set to NO
  129. # only classes defined in header files are included. Does not have any effect
  130. # for Java sources.
  131. # The default value is: YES.
  132. EXTRACT_LOCAL_CLASSES = YES
  133. EXTRACT_LOCAL_METHODS = YES
  134. EXTRACT_ANON_NSPACES = YES
  135. HIDE_UNDOC_MEMBERS = NO
  136. HIDE_UNDOC_CLASSES = NO
  137. HIDE_FRIEND_COMPOUNDS = NO
  138. HIDE_IN_BODY_DOCS = NO
  139. INTERNAL_DOCS = NO
  140. CASE_SENSE_NAMES = YES
  141. HIDE_SCOPE_NAMES = NO
  142. SHOW_INCLUDE_FILES = YES
  143. # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
  144. # grouped member an include statement to the documentation, telling the reader
  145. # which file to include in order to use the member.
  146. # The default value is: NO.
  147. SHOW_GROUPED_MEMB_INC = YES
  148. FORCE_LOCAL_INCLUDES = NO
  149. INLINE_INFO = YES
  150. SORT_MEMBER_DOCS = YES
  151. SORT_BRIEF_DOCS = NO
  152. SORT_MEMBERS_CTORS_1ST = NO
  153. SORT_GROUP_NAMES = NO
  154. SORT_BY_SCOPE_NAME = NO
  155. STRICT_PROTO_MATCHING = NO
  156. GENERATE_TODOLIST = YES
  157. GENERATE_TESTLIST = YES
  158. GENERATE_BUGLIST = YES
  159. GENERATE_DEPRECATEDLIST= YES
  160. ENABLED_SECTIONS =
  161. MAX_INITIALIZER_LINES = 30
  162. SHOW_USED_FILES = YES
  163. SHOW_FILES = YES
  164. SHOW_NAMESPACES = YES
  165. FILE_VERSION_FILTER = "git log -n 1 --pretty=format:%h -- "
  166. #LAYOUT_FILE = layoutFile.xml
  167. CITE_BIB_FILES =
  168. #---------------------------------------------------------------------------
  169. # Configuration options related to warning and progress messages
  170. #---------------------------------------------------------------------------
  171. QUIET = NO
  172. WARNINGS = YES
  173. WARN_IF_UNDOCUMENTED = YES
  174. WARN_IF_DOC_ERROR = YES
  175. WARN_NO_PARAMDOC = YES
  176. WARN_FORMAT = "$file:$line: $text"
  177. WARN_LOGFILE =
  178. #---------------------------------------------------------------------------
  179. # Configuration options related to the input files
  180. #---------------------------------------------------------------------------
  181. INPUT = src
  182. INPUT_ENCODING = UTF-8
  183. FILE_PATTERNS = *.cpp \
  184. *.h \
  185. *.hpp
  186. RECURSIVE = YES
  187. EXCLUDE =
  188. EXCLUDE_SYMLINKS = NO
  189. EXCLUDE_PATTERNS =
  190. EXCLUDE_SYMBOLS =
  191. EXAMPLE_PATH =
  192. EXAMPLE_PATTERNS =
  193. EXAMPLE_RECURSIVE = NO
  194. IMAGE_PATH =
  195. INPUT_FILTER =
  196. FILTER_PATTERNS =
  197. FILTER_SOURCE_FILES = NO
  198. FILTER_SOURCE_PATTERNS =
  199. # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
  200. # is part of the input, its contents will be placed on the main page
  201. # (index.html). This can be useful if you have a project on for instance GitHub
  202. # and want to reuse the introduction page also for the doxygen output.
  203. USE_MDFILE_AS_MAINPAGE =
  204. #---------------------------------------------------------------------------
  205. # Configuration options related to source browsing
  206. #---------------------------------------------------------------------------
  207. SOURCE_BROWSER = YES
  208. INLINE_SOURCES = YES
  209. STRIP_CODE_COMMENTS = YES
  210. # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
  211. # function all documented functions referencing it will be listed.
  212. # The default value is: NO.
  213. REFERENCED_BY_RELATION = YES
  214. # If the REFERENCES_RELATION tag is set to YES then for each documented function
  215. # all documented entities called/used by that function will be listed.
  216. # The default value is: NO.
  217. REFERENCES_RELATION = YES
  218. REFERENCES_LINK_SOURCE = YES
  219. SOURCE_TOOLTIPS = YES
  220. USE_HTAGS = NO
  221. VERBATIM_HEADERS = YES
  222. # If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the
  223. # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
  224. # cost of reduced performance. This can be particularly helpful with template
  225. # rich C++ code for which doxygen's built-in parser lacks the necessary type
  226. # information.
  227. # Note: The availability of this option depends on whether or not doxygen was
  228. # compiled with the --with-libclang option.
  229. # The default value is: NO.
  230. CLANG_ASSISTED_PARSING = NO
  231. # If clang assisted parsing is enabled you can provide the compiler with command
  232. # line options that you would normally use when invoking the compiler. Note that
  233. # the include paths will already be set by doxygen for the files and directories
  234. # specified with INPUT and INCLUDE_PATH.
  235. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
  236. CLANG_OPTIONS =
  237. #---------------------------------------------------------------------------
  238. # Configuration options related to the alphabetical class index
  239. #---------------------------------------------------------------------------
  240. ALPHABETICAL_INDEX = YES
  241. COLS_IN_ALPHA_INDEX = 5
  242. IGNORE_PREFIX =
  243. #---------------------------------------------------------------------------
  244. # Configuration options related to the HTML output
  245. #---------------------------------------------------------------------------
  246. GENERATE_HTML = YES
  247. HTML_OUTPUT = html
  248. HTML_FILE_EXTENSION = .html
  249. HTML_HEADER =
  250. HTML_FOOTER =
  251. HTML_STYLESHEET =
  252. HTML_EXTRA_STYLESHEET =
  253. HTML_EXTRA_FILES =
  254. HTML_COLORSTYLE_HUE = 30
  255. HTML_COLORSTYLE_SAT = 100
  256. HTML_COLORSTYLE_GAMMA = 80
  257. HTML_TIMESTAMP = YES
  258. # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
  259. # documentation will contain sections that can be hidden and shown after the
  260. # page has loaded.
  261. # The default value is: NO.
  262. # This tag requires that the tag GENERATE_HTML is set to YES.
  263. HTML_DYNAMIC_SECTIONS = NO
  264. # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
  265. # shown in the various tree structured indices initially; the user can expand
  266. # and collapse entries dynamically later on. Doxygen will expand the tree to
  267. # such a level that at most the specified number of entries are visible (unless
  268. # a fully collapsed tree already exceeds this amount). So setting the number of
  269. # entries 1 will produce a full collapsed tree by default. 0 is a special value
  270. # representing an infinite number of entries and will result in a full expanded
  271. # tree by default.
  272. # Minimum value: 0, maximum value: 9999, default value: 100.
  273. # This tag requires that the tag GENERATE_HTML is set to YES.
  274. HTML_INDEX_NUM_ENTRIES = 100
  275. GENERATE_DOCSET = NO
  276. DOCSET_FEEDNAME = "Doxygen generated docs"
  277. DOCSET_BUNDLE_ID = org.doxygen.Project
  278. DOCSET_PUBLISHER_ID = org.doxygen.Publisher
  279. DOCSET_PUBLISHER_NAME = Publisher
  280. GENERATE_HTMLHELP = NO
  281. CHM_FILE =
  282. HHC_LOCATION =
  283. GENERATE_CHI = NO
  284. CHM_INDEX_ENCODING =
  285. BINARY_TOC = NO
  286. TOC_EXPAND = NO
  287. GENERATE_QHP = NO
  288. QCH_FILE =
  289. QHP_NAMESPACE = org.doxygen.Project
  290. QHP_VIRTUAL_FOLDER = doc
  291. QHP_CUST_FILTER_NAME =
  292. QHP_CUST_FILTER_ATTRS =
  293. QHP_SECT_FILTER_ATTRS =
  294. QHG_LOCATION =
  295. GENERATE_ECLIPSEHELP = NO
  296. ECLIPSE_DOC_ID = org.doxygen.Project
  297. DISABLE_INDEX = NO
  298. GENERATE_TREEVIEW = NO
  299. ENUM_VALUES_PER_LINE = 4
  300. TREEVIEW_WIDTH = 250
  301. EXT_LINKS_IN_WINDOW = NO
  302. FORMULA_FONTSIZE = 10
  303. FORMULA_TRANSPARENT = YES
  304. USE_MATHJAX = NO
  305. MATHJAX_FORMAT = HTML-CSS
  306. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
  307. MATHJAX_EXTENSIONS =
  308. MATHJAX_CODEFILE =
  309. SEARCHENGINE = YES
  310. SERVER_BASED_SEARCH = NO
  311. EXTERNAL_SEARCH = NO
  312. SEARCHENGINE_URL =
  313. SEARCHDATA_FILE = searchdata.xml
  314. EXTERNAL_SEARCH_ID =
  315. EXTRA_SEARCH_MAPPINGS =
  316. #---------------------------------------------------------------------------
  317. # Configuration options related to the LaTeX output
  318. #---------------------------------------------------------------------------
  319. GENERATE_LATEX = NO
  320. LATEX_OUTPUT = latex
  321. LATEX_CMD_NAME = latex
  322. MAKEINDEX_CMD_NAME = makeindex
  323. COMPACT_LATEX = NO
  324. PAPER_TYPE = a4
  325. EXTRA_PACKAGES =
  326. LATEX_HEADER =
  327. LATEX_FOOTER =
  328. LATEX_EXTRA_FILES =
  329. PDF_HYPERLINKS = YES
  330. USE_PDFLATEX = YES
  331. LATEX_BATCHMODE = NO
  332. LATEX_HIDE_INDICES = NO
  333. LATEX_SOURCE_CODE = NO
  334. LATEX_BIB_STYLE = plain
  335. #---------------------------------------------------------------------------
  336. # Configuration options related to the RTF output
  337. #---------------------------------------------------------------------------
  338. GENERATE_RTF = NO
  339. RTF_OUTPUT = rtf
  340. COMPACT_RTF = NO
  341. RTF_HYPERLINKS = NO
  342. RTF_STYLESHEET_FILE =
  343. RTF_EXTENSIONS_FILE =
  344. #---------------------------------------------------------------------------
  345. # Configuration options related to the man page output
  346. #---------------------------------------------------------------------------
  347. GENERATE_MAN = NO
  348. MAN_OUTPUT = man
  349. MAN_EXTENSION = .3
  350. MAN_SUBDIR =
  351. MAN_LINKS = NO
  352. #---------------------------------------------------------------------------
  353. # Configuration options related to the XML output
  354. #---------------------------------------------------------------------------
  355. GENERATE_XML = NO
  356. XML_OUTPUT = xml
  357. XML_PROGRAMLISTING = YES
  358. #---------------------------------------------------------------------------
  359. # Configuration options related to the DOCBOOK output
  360. #---------------------------------------------------------------------------
  361. GENERATE_DOCBOOK = NO
  362. DOCBOOK_OUTPUT = docbook
  363. DOCBOOK_PROGRAMLISTING = NO
  364. #---------------------------------------------------------------------------
  365. # Configuration options for the AutoGen Definitions output
  366. #---------------------------------------------------------------------------
  367. GENERATE_AUTOGEN_DEF = NO
  368. #---------------------------------------------------------------------------
  369. # Configuration options related to the Perl module output
  370. #---------------------------------------------------------------------------
  371. GENERATE_PERLMOD = NO
  372. PERLMOD_LATEX = NO
  373. PERLMOD_PRETTY = YES
  374. PERLMOD_MAKEVAR_PREFIX =
  375. #---------------------------------------------------------------------------
  376. # Configuration options related to the preprocessor
  377. #---------------------------------------------------------------------------
  378. ENABLE_PREPROCESSING = YES
  379. MACRO_EXPANSION = YES
  380. EXPAND_ONLY_PREDEF = NO
  381. SEARCH_INCLUDES = YES
  382. INCLUDE_PATH = src /usr/include /usr/include/SDL /usr/include/libxml2
  383. INCLUDE_FILE_PATTERNS =
  384. # The PREDEFINED tag can be used to specify one or more macro names that are
  385. # defined before the preprocessor is started (similar to the -D option of e.g.
  386. # gcc). The argument of the tag is a list of macros of the form: name or
  387. # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
  388. # is assumed. To prevent a macro definition from being undefined via #undef or
  389. # recursively expanded use the := operator instead of the = operator.
  390. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  391. PREDEFINED = ENABLE_LIBXML=1 USE_OPENGL=1 TMWA_SUPPORT=1 ENABLE_NLS=1
  392. # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
  393. # tag can be used to specify a list of macro names that should be expanded. The
  394. # macro definition that is found in the sources will be used. Use the PREDEFINED
  395. # tag if you want to use a different macro definition that overrules the
  396. # definition found in the source code.
  397. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  398. EXPAND_AS_DEFINED =
  399. SKIP_FUNCTION_MACROS = NO
  400. #---------------------------------------------------------------------------
  401. # Configuration options related to external references
  402. #---------------------------------------------------------------------------
  403. TAGFILES =
  404. GENERATE_TAGFILE =
  405. # If the ALLEXTERNALS tag is set to YES all external class will be listed in the
  406. # class index. If set to NO only the inherited external classes will be listed.
  407. # The default value is: NO.
  408. ALLEXTERNALS = NO
  409. # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in
  410. # the modules index. If set to NO, only the current project's groups will be
  411. # listed.
  412. # The default value is: YES.
  413. EXTERNAL_GROUPS = YES
  414. EXTERNAL_PAGES = YES
  415. PERL_PATH = /usr/bin/perl
  416. #---------------------------------------------------------------------------
  417. # Configuration options related to the dot tool
  418. #---------------------------------------------------------------------------
  419. CLASS_DIAGRAMS = YES
  420. MSCGEN_PATH =
  421. DIA_PATH =
  422. HIDE_UNDOC_RELATIONS = NO
  423. HAVE_DOT = NO
  424. DOT_NUM_THREADS = 0
  425. # When you want a differently looking font in the dot files that doxygen
  426. # generates you can specify the font name using DOT_FONTNAME. You need to make
  427. # sure dot is able to find the font, which can be done by putting it in a
  428. # standard location or by setting the DOTFONTPATH environment variable or by
  429. # setting DOT_FONTPATH to the directory containing the font.
  430. # The default value is: Helvetica.
  431. # This tag requires that the tag HAVE_DOT is set to YES.
  432. DOT_FONTNAME = Helvetica
  433. DOT_FONTSIZE = 10
  434. DOT_FONTPATH =
  435. CLASS_GRAPH = YES
  436. COLLABORATION_GRAPH = YES
  437. GROUP_GRAPHS = YES
  438. # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
  439. # collaboration diagrams in a style similar to the OMG's Unified Modeling
  440. # Language.
  441. # The default value is: NO.
  442. # This tag requires that the tag HAVE_DOT is set to YES.
  443. UML_LOOK = NO
  444. UML_LIMIT_NUM_FIELDS = 10
  445. # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
  446. # collaboration graphs will show the relations between templates and their
  447. # instances.
  448. # The default value is: NO.
  449. # This tag requires that the tag HAVE_DOT is set to YES.
  450. TEMPLATE_RELATIONS = NO
  451. INCLUDE_GRAPH = YES
  452. INCLUDED_BY_GRAPH = YES
  453. CALL_GRAPH = YES
  454. CALLER_GRAPH = YES
  455. GRAPHICAL_HIERARCHY = YES
  456. DIRECTORY_GRAPH = YES
  457. DOT_IMAGE_FORMAT = png
  458. INTERACTIVE_SVG = NO
  459. DOT_PATH =
  460. DOTFILE_DIRS =
  461. MSCFILE_DIRS =
  462. DIAFILE_DIRS =
  463. PLANTUML_JAR_PATH =
  464. DOT_GRAPH_MAX_NODES = 400
  465. MAX_DOT_GRAPH_DEPTH = 0
  466. DOT_TRANSPARENT = YES
  467. DOT_MULTI_TARGETS = YES
  468. GENERATE_LEGEND = YES
  469. DOT_CLEANUP = YES