GNOME Bugzilla – Bug 676019
Include path using quotes does not work as documented
Last modified: 2012-07-13 05:15:35 UTC
Created attachment 213988 [details] Sample code used to test the documented feature I tried http://www.stack.nl/~dimitri/doxygen/faq.html, topic 5 (How can I change what is after the #include in the class documentation?), second sample (copied the sample code to a new file with name myhdr.h - see attachment). The created documentation still shows a '#include <path/myhdr.h>' instead of '#include "path/myhdr.h"'
Confirmed. As a temporary workaround you could set FORCE_LOCAL_INCLUDES to YES.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.1.1. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.
The FORCE_LOCAL_INCLUDES "trick" works fine for use. However the documented way still does not work for me in 1.8.1.1. I'll add an attachment with my test case (doxyfile, directory structure with documented header file). I just saved doxygen.exe (1.8.1.1) next to Doxyfile and called "doxygen doxyfile" (I have no doxygen installed, so I am sure that the new one was used). In the documentation for MyClassName I still get #include <path/myhdr.h> but expect #include "path/myhdr.h"
Created attachment 216125 [details] Sample project showing the problem
Indeed. I've been able to reproduce the problem. Should be corrected in the next update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.1.2. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.
Now it works! Thanks a lot!