summaryrefslogtreecommitdiffstats
path: root/src/configimpl.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactor: modernize configuration valuesDimitri van Heesch2020-06-041-45/+46
|
* Unknown configuration enum valuesalbert-github2020-02-131-0/+1
| | | | | | | | | | | | In case we set for instance `DOT_IMAGE_FORMAT = SVG` (and generate call graphs) we get messages from the `dot` tool like: ``` error: Problems running dot: exit code=1, command='dot', arguments='".../example/html/test_8cpp_a764ac60c654173eb1a0afd0906ad5a12_icgraph.dot" -TSVG -o ".../example/html/test_8cpp_a764ac60c654173eb1a0afd0906ad5a12_icgraph.SVG"' ``` on other places (e.g `HTML_FORMULA_FORMAT`) and an unknown or enum value with a wrong case, the default value is (silently) taken. We now check: - is the enum value of the correct case otherwise (silently) set it to the correct case. - in case of an unknown enum value a warning is given and the default value is used
* Use the proper trailing comment.Mark de Wever2019-08-241-8/+8
| | | | | This was found while testing with Clang's -Wdocumentation -Wdocumentation-pedantic options.
* issue #7190 1.8.16: Blank FILE_PATTERNS => no files processedalbert-github2019-08-131-0/+1
| | | | This is actually a regression on #7195. Due to the fact that the init() routine has moved up, the settings for `FILE_PATTERNS` have already been done and a call to init does not operate on the `FILE_PATTERNS` variable but on the structure from which the `FILE_PATTERNS` was derived. We have should here operate on the `FILE_PATTERNS` directly as well., bu getting the default values out of the underlying structure.
* Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is emptyalbert-github2018-10-081-0/+6
| | | | In case a string is empty the default should be taken and not left blank.
* Difference between standard and used Doxyfilealbert-github2018-09-151-0/+14
| | | | | | Writes a the differences between the current configuration and the template configuration. Useful when communicating e.g. in forums.
* Bug 766069 - Files with incorrect extensions (.doc) are picked up by doxygenDimitri van Heesch2016-05-161-2/+3
|
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-0/+570
improve performance