I am not sure whether this is to be a doxygen
or a dot
question, but here goes.
In my project I have many files that need to include common headers such stdlib.h
, stdint.h
, and so on. When I ask doxygen
to generate the dependency graphs for each of my files, this leads to a lot of clutter and noise as the drawing tool always reuses existing nodes and never duplicates them.
Can I somehow tell doxygen
to exclude a set of headers from the generated graph, simply ignore them completely? I'd prefer not to resort to horrible preprocessor tricks to delete the #include's when building the documentation.
I found a couple mailing list threads of someone asking the same thing, but they either got no reply or a suggestion about playing with the dependency graph's maximum depth, which simply does not work, as the headers can be included at any depth (so doing that ends up munching my own local headers).