diff options
author | albert-github <albert.tests@gmail.com> | 2020-03-14 09:35:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 09:35:19 (GMT) |
commit | ffd222f0bb26e6b9fb696bfda60a5f675cae1514 (patch) | |
tree | b9e09d7c2dcac321c0fa222d3cf7ba8dc6933603 | |
parent | ef07bc9fb2fc86d30f4a6781c4b0c48564d27b03 (diff) | |
download | Doxygen-ffd222f0bb26e6b9fb696bfda60a5f675cae1514.zip Doxygen-ffd222f0bb26e6b9fb696bfda60a5f675cae1514.tar.gz Doxygen-ffd222f0bb26e6b9fb696bfda60a5f675cae1514.tar.bz2 |
Doxygen version in the messages output (#7640)
Output the doxygen version with the normal progress messages (and suppress in case of QUIET=YES).
-rw-r--r-- | src/doxygen.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 3fa6959..a0e9623 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -10772,6 +10772,18 @@ void parseInput() { atexit(exitDoxygen); + // we would like to show the versionString earlier, but we first have to handle the configuration file + // to know the value of the QUIET setting. + QCString versionString; + if (strlen(getGitVersion())>0) + { + versionString = QCString(getVersion())+" ("+getGitVersion()+")"; + } + else + { + versionString = getVersion(); + } + msg("Doxygen version used: %s\n",versionString.data()); /************************************************************************** * Make sure the output directory exists |