From fcf0612c10dac111046c1c75ca2eb8d9fde60b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 22 May 2012 15:04:53 +0200 Subject: [PATCH] Absolute include paths in documentation. Currently it was incorrectly stated that for using Math::Matrix or for example Trade::MeshData it was sufficient to #include #include which was obviously wrong, as Math/ (nor any other namespace-related subdirectory) is not on include path. Now it states correctly that a directory prefix is needed: #include #include The same is now fixed for classes in magnum-plugins repository. --- Doxyfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doxyfile b/Doxyfile index 88e01bc13..98a3aa425 100644 --- a/Doxyfile +++ b/Doxyfile @@ -137,7 +137,8 @@ STRIP_FROM_PATH = ../ # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. -STRIP_FROM_INC_PATH = +STRIP_FROM_INC_PATH = ../magnum/src \ + ../magnum-plugins/src # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system