Hello,
I try to use doxygen to generate code documentation from a set of folders. My folder structure is like this:
+root
+-include/
+-include/subdir/file.h
+-src
+-src/subdir/file.cpp
+-Documentation/doxygen.config
Then in the configuration file I have the following settings in the "default" configuration file (Which is stated in the documentation and other questions here):
INPUT = "../include" "../src"
RECURSIVE = YES
The problem is that when running this configuration, the HTML output does not contain any documentation whatsoever. When I add all individual files like
INPUT = "../include/subdir/file.h"
to the input, it does generate documentation for those files. Is there an additional setting in the default configuration that I need to include in order for doxygen to find the files and create documentation?
I'm using doxygen 1.8.4 on Linux Ubuntu (12.04 LTS).
Thanks in advance for any hints or tips.