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 :(
TAGFILES=proj1/html/doxy.tag:../../proj1/html
? A large example (though it is from a real life project where there has been a lot of time invested to get it right) is at doc.cgal.org/latest/Manual/packages.html here is an overview (the mentioned page) and from there one can go to the subpackages. – albertproj1/html/doxy.tag:../../proj1/html
. The link you sent is a generated doxygen fileset. I really need to look at how they are created (i.e. what doxygen config is used). My tag (as it was) is being read ok - no error - but I get no links to it in the documentation. Do I need to reference it in a comment? - thanks for your support – code_fodder=
sign (see doxygen documentation, number of..
might also be incorrect I'm doingit by head). The file CGAL code, documentation parts etc. is in the CGAL repository on github. As said the CGAL structure is quite complicated with CMake etc. – albert