I have a Fortran subroutine proc
that calls Fortran subroutine uv
. uv
is in a different module with it's own module page in Doxygen. I would like to add a link so that you can click on uv
on the Doxygen page for proc
and it will take you to the uv
page.
I tried to do:
!> Comments
!! call \link uv \endlink
!> Comments
!! call \ref uv
!> Comments
!! call \see uv
None of these linked to the uv
page. Is there a better way to do it? I used HTML links, and that worked, but that is cumbersome and will take a really long time because I have a lot of subroutines that are like this.