I'm documenting a C++ library's header files with Doxygen. In the Doxyfile
, I defined
INPUT = include/
in the hopes that Doxygen would then generate documentation for all the header files in include/Foo
, but it doesn't: only the index.html
is generated. I can set INPUT
to include/Foo
, but then the documentation lists the headers with their basenames (Reader.hh
), while I want clients to include the headers as Foo/Reader.hh
etc.
How can I get Doxygen to look within the subdirectory?