summaryrefslogtreecommitdiffstats
path: root/src/config.xml
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-02 20:01:38 (GMT)
committerGitHub <noreply@github.com>2020-12-02 20:01:38 (GMT)
commit2b0e8c46feb95812ac0596b4d1137350d359f1fa (patch)
treeac840d9556420813f77fbe1c172a7e04b84ccfc1 /src/config.xml
parent0dd90a3c0d808c5dba9f5bd5b7ea8591783fcb3e (diff)
parentb88e8097acdb30175c024ed47258739cec30f903 (diff)
downloadDoxygen-2b0e8c46feb95812ac0596b4d1137350d359f1fa.zip
Doxygen-2b0e8c46feb95812ac0596b4d1137350d359f1fa.tar.gz
Doxygen-2b0e8c46feb95812ac0596b4d1137350d359f1fa.tar.bz2
Merge pull request #8197 from albert-github/feature/issue_8023
issue #8023 Add option to exit with non-zero exit code on warnings even if WARN_AS_ERROR is OFF
Diffstat (limited to 'src/config.xml')
-rw-r--r--src/config.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config.xml b/src/config.xml
index 56dacd6..38a18d8 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1336,13 +1336,19 @@ FILE_VERSION_FILTER = "cleartool desc -fmt \%Vn"
]]>
</docs>
</option>
- <option type='bool' id='WARN_AS_ERROR' defval='0'>
+ <option type='enum' id='WARN_AS_ERROR' defval='NO'>
<docs>
<![CDATA[
If the \c WARN_AS_ERROR tag is set to \c YES then doxygen will immediately stop
when a warning is encountered.
+ If the \c WARN_AS_ERROR tag is set to \c FAIL_ON_WARNINGS then doxygen will continue
+ running as if \c WARN_AS_ERROR tag is set to \c NO, but at the end of the doxygen
+ process doxygen will return with a non-zero status.
]]>
</docs>
+ <value name="NO"/>
+ <value name="YES" />
+ <value name="FAIL_ON_WARNINGS" />
</option>
<option type='string' id='WARN_FORMAT' format='string' defval='$file:$line: $text'>
<docs>