I am using Doxygen to document a huge C++-project. Due to hardware limitations I am not able to document the entire code at once. Hence I divided my code into two modules (A and B), and am using the TAGFILES
option to document dependencies.
For A
GENERATE_TAGFILE = A_tags
TAGFILES = ""
For B
GENERATE_TAGFILE = B_tags
TAGFILES = "A_tags = doxygenated_A/html"
However, A and B depend on each other, but using the above configuration I am unable to solve A’s dependency on B.
Can you please suggest how to solve A’s dependency on B?