summaryrefslogtreecommitdiffstats
path: root/src/configimpl.l
Commit message (Collapse)AuthorAgeFilesLines
* Made MSCGEN_PATH obsolete now that mscgen code is part of doxygenDimitri van Heesch2019-06-241-24/+0
|
* Count user comment linesalbert-github2019-04-141-2/+2
| | | | The user comment lines were not counted resulting in a wrong line number in case of an error message.
* Fixed regression after fixing memory leakDimitri van Heesch2018-12-261-2/+2
|
* Keyword register (in code) is deprecated since C++11albert-github2018-11-271-1/+1
| | | | | | The keyword `register` is deprecated since C++11: - for the Darwin platform it was already filtered (-Wno-deprecated-register) - CLan emits: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register]
* Merge pull request #6542 from albert-github/feature/bug_751700Dimitri van Heesch2018-10-271-2/+12
|\ | | | | Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is empty
| * Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is emptyalbert-github2018-10-081-2/+12
| | | | | | | | In case a string is empty the default should be taken and not left blank.
* | Enable comma as separator in configuration listsalbert-github2018-10-181-2/+2
|/ | | | | Loosely based on problems when users use a comma as separator in a list (as this is slightly suggested in the documentation). (https://stackoverflow.com/questions/43093051/doxygen-is-generating-empty-documentation)
* Difference between standard and used Doxyfile (list)albert-github2018-09-181-8/+57
| | | | The default (string) list can contain an empty elements (e.g. INPUT, STRIP_FROM_PATH) giving false positives. Removed empty elements from the checks.
* Difference between standard and used Doxyfilealbert-github2018-09-151-0/+60
| | | | | | Writes a the differences between the current configuration and the template configuration. Useful when communicating e.g. in forums.
* Clear header/footer information in ConfigImpl for postProcessArtur Kink2016-09-271-4/+4
|
* flex: use %option instead of command line options.Adrian Negreanu2016-09-211-0/+2
|
* Bug 766069 - Files with incorrect extensions (.doc) are picked up by doxygenDimitri van Heesch2016-05-161-21/+10
|
* Fix STRIP_FROM_PATH when running from drive rootFred Sundvik2016-04-041-10/+16
| | | | | | | | | | When running doxygen from the drive root, the STRIP_FROM_PATH, variable could get an extra slash. As a result no paths were stripped. This fix makes sure that a duplicate slash is not added both for the automatic generation, and when you specify a relative path that maps to the drive root in the configuration. Also change some tabs to spaces
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-0/+1780
improve performance