summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index c59b075..f773180 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10361,6 +10361,13 @@ static void writeTagFile()
FTextStream tagFile(&tag);
tagFile << "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>" << endl;
tagFile << "<tagfile>" << endl;
+ tagFile << " <doxygen";
+ tagFile << " version=\"" << getDoxygenVersion() << "\"";
+ if (strlen(getGitVersion())>0)
+ {
+ tagFile << " gitid=\"" << getGitVersion() << "\"";
+ }
+ tagFile << "></doxygen>" << endl;
// for each file
for (const auto &fn : *Doxygen::inputNameLinkedMap)