I have read this and this but I still can't figure out how to do this.
So I have here is a fictional example (just to keep it small/simple):
top_level/
|
|--- proj1/
| |--- html/
|
|--- proj2/
| |--- html/
So here both proj1 and proj2 have generated html-style doxygen output into the sub-folders html/ - such that each of these contains an index.html
All I really want to do now is create a top-level doxygen page which will live in top_level/html/
perhaps also named index.html that points to the two sub-projects.
Is that possible? I am really looking for a concrete example.
I had a little go with tagfiles. I was able to generate tag files for each subproject (by setting GENERATE_TAGFILE=html/doxy.tag
.
I also add this into the top_level project: TAGFILES=proj1/html/doxy.tag
But I still just got an empty top_level page :(