diff options
author | Rhys Kidd <rhyskidd@gmail.com> | 2016-04-09 16:43:20 -0400 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-04-13 13:44:04 +0100 |
commit | 684e7a4a143a5ff021893aa4df7569328452fabe (patch) | |
tree | 7220d8fb36f01edbfcedfe7ab234b20d6b9fc6b8 /doxygen | |
parent | f066fb529bf05bfd839f6c1dcb476c860afa1bbd (diff) |
doxygen: Correct TAGFILE relative paths
Per Doxygen documentation, to combine external documentation (stored in
a *.tag file) with a project the TAGFILES option should be set in the
configuration file.
A tag file typically only contains a relative location of the
documentation from the point where doxygen was run. So when
you include a tag file in other project you have to specify
where the external documentation is located in relation this
project.
You can do this in the configuration file by assigning the
(relative) location to the tag files specified after the
TAGFILES configuration option.
If you use a relative path it should be relative with respect
to the directory where the HTML output of your project is
generated; so a relative path from the HTML output directory
of a project to the HTML output of the other project that is
linked to.
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'doxygen')
-rw-r--r-- | doxygen/gbm.doxy | 2 | ||||
-rw-r--r-- | doxygen/glapi.doxy | 2 | ||||
-rw-r--r-- | doxygen/i965.doxy | 2 | ||||
-rw-r--r-- | doxygen/swrast.doxy | 2 | ||||
-rw-r--r-- | doxygen/tnl.doxy | 4 | ||||
-rw-r--r-- | doxygen/tnl_dd.doxy | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/doxygen/gbm.doxy b/doxygen/gbm.doxy index 37e4aa05f95..d0f7f950706 100644 --- a/doxygen/gbm.doxy +++ b/doxygen/gbm.doxy @@ -44,5 +44,5 @@ TAGFILES = main.tag=../core \ tnl_dd.tag=../tnl_dd \ swrast_setup.tag=../gbm_setup \ tnl.tag=../tnl \ - vbo.tag=vbo + vbo.tag=../vbo GENERATE_TAGFILE = gbm.tag diff --git a/doxygen/glapi.doxy b/doxygen/glapi.doxy index 0e169e43519..d4d967a270f 100644 --- a/doxygen/glapi.doxy +++ b/doxygen/glapi.doxy @@ -45,5 +45,5 @@ TAGFILES = main.tag=../core \ swrast.tag=../swrast \ swrast_setup.tag=../swrast_setup \ tnl.tag=../tnl \ - vbo.tag=vbo + vbo.tag=../vbo GENERATE_TAGFILE = glapi.tag diff --git a/doxygen/i965.doxy b/doxygen/i965.doxy index a3aa2b607fe..014245e581b 100644 --- a/doxygen/i965.doxy +++ b/doxygen/i965.doxy @@ -46,5 +46,5 @@ TAGFILES = glsl.tag=../glsl \ swrast_setup.tag=../swrast_setup \ tnl.tag=../tnl \ tnl_dd.tag=../tnl_dd \ - vbo.tag=vbo + vbo.tag=../vbo GENERATE_TAGFILE = i965.tag diff --git a/doxygen/swrast.doxy b/doxygen/swrast.doxy index fa07afd594f..520764f16a8 100644 --- a/doxygen/swrast.doxy +++ b/doxygen/swrast.doxy @@ -44,5 +44,5 @@ TAGFILES = main.tag=../core \ tnl_dd.tag=../tnl_dd \ swrast_setup.tag=../swrast_setup \ tnl.tag=../tnl \ - vbo.tag=vbo + vbo.tag=../vbo GENERATE_TAGFILE = swrast.tag diff --git a/doxygen/tnl.doxy b/doxygen/tnl.doxy index 85ef56ce4b6..09f5c1cbbe4 100644 --- a/doxygen/tnl.doxy +++ b/doxygen/tnl.doxy @@ -44,6 +44,6 @@ TAGFILES = tnl_dd.tag=../tnl \ main.tag=../core \ math.tag=../math \ swrast.tag=../swrast \ - swrast_setup.tag=swrast_setup \ - vbo.tag=vbo + swrast_setup.tag=../swrast_setup \ + vbo.tag=../vbo GENERATE_TAGFILE = tnl.tag diff --git a/doxygen/tnl_dd.doxy b/doxygen/tnl_dd.doxy index 5404f379f82..d8fed0ab91f 100644 --- a/doxygen/tnl_dd.doxy +++ b/doxygen/tnl_dd.doxy @@ -44,5 +44,5 @@ TAGFILES = main.tag=../core \ swrast.tag=../swrast \ swrast_setup.tag=../swrast_setup \ tnl.tag=../tnl \ - vbo.tag=vbo + vbo.tag=../vbo GENERATE_TAGFILE = tnl_dd.tag |