I have a following structure of my project:
root/
+--root.doxyfile
+--root.doxytag
+--doc/
+--html/
+--packages/
+--project1/
+--project1.doxyfile
+--project1.doxytag
+--foo.h
+--foo.cpp
+--doc/
+--html/
I generated a proper doxygen documentation of "project1" containing a one group named "TestGroup". What I want to do is to make the project1's group visible in root's documentation - "TestGroup" at "Modules" tab in root html documentation.
I set tagfiles in root.doxyfile :
TAGFILES = packages/project1/project1.doxytag=../../packages/project1/doc/html
ALLEXTERNALS = YES
EXTERNAL_GROUPS = YES
After generating a html root documentation I only see files from project1 at "Files" tab, but "TestGroup" is not present at "Modules" tab. I would like to mention that "TestGroup" is visible in project1 html documentation.
What I am doing wrong? It is possible to make this group visible at "Modules" tab?