albert-github
albert-github
With the version that was valid at the moment that the issue was written (doxygen 1.5.2) , the simple file: ``` /** \file * \section sect0 First file section *...
With a minimal `Doxyfile`: ``` EXTRACT_ALL = YES EXTRACT_ANON_NSPACES = YES EXTRACT_STATIC = YES ``` We get for the 1.5.1-p1 version (for some reason my 1.5.2. version doesn't want to...
With the 1.5.2 version we see on the detailed page, when `SEPARATE_MEMBER_PAGES=YES`:  and when `SEPARATE_MEMBER_PAGES=NO`:  For the 1.9.4 version we see in both cases:  I think the...
The problem here is that based on the `SERVER_BASED_SEARCH` the resulting html output will contain different code as can be see e.g. in the method `writeDefaultQuickLinks` of `htmlgen.cpp`: ``` t
The file search.idx is currently (1.9.4) not automatically generated, it now requires the setting `SERVER_BASED_SEARCH` (introduced in version 1.6.2). The given example doesn't contain a `Doxyfile` so it is not...
I tried to run the example from @FlaShG with a simple Doxyfile: ``` EXTRACT_ALL=YES ``` though with the versions 1.9.0 and 1.9.1 this crashed. with the version 1.8.20 it ran....
That is strange. - on which platform are you running? - with the `HAVE_DOT=NO` I get as last lines on the console ``` Generating class documentation... Generating docs for compound...
Remains strange that you don't get the crash. Maybe @doxygen has an idea.
@jadaml - What are you exactly missing? - Did you set `EXTRACT_STATIC=YES` in your doxygen configuration file? - Can you please attach a, small, self contained example (source+configuration file in...
The problem that we have here is that doxygen is not a compiler and that doxygen tries to optimize the processing of the different files. As soon as an include...