I am running Doxygen 1.8.13 to document vhdl files, and I ran into the following problem: I am including extra DOT files to add additional graphs. The graphs are generating fine, but when I try to add in links to the nodes in the graph, using the \ref command, the links cut out the html and project directories from their paths:
ex. it tries linking to file:///Users/documentation/d2/dbe/classAxiVersion.html when the page is at file:///Users/documentation/project/html/d2/dbe/classAxiVersion.html
I'm not sure if I'm creating the links wrong, or if this is a bug with the graphs? Thank you
Hello,
I am running Doxygen 1.8.13 to document vhdl files, and I ran into the following problem: I am including extra DOT files to add additional graphs. The graphs are generating fine, but when I try to add in links to the nodes in the graph, using the \ref command, the links cut out the html and project directories from their paths:
ex. it tries linking to file:///Users/documentation/d2/dbe/classAxiVersion.html when the page is at file:///Users/documentation/project/html/d2/dbe/classAxiVersion.html
I'm not sure if I'm creating the links wrong, or if this is a bug with the graphs? Thank you
Here's a sample DOT file I'm using:
"
digraph G{
node [shape=record, fontname=Helvetica, fontsize=10];
AxiSy[label="AxiSy" URL="\ref AxiSy"];
AxiSyReg[label="AxiSy" URL="\ref AxiSyReg"];
AxiSyCore -> AxiSyReg;
}
"
Last edit: Steven McDonald 2017-06-23