diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-05 19:15:33 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-05 19:15:33 -0400 |
commit | 646a46b53bae37ebd93f21b81bb3cde232a481d0 (patch) | |
tree | f837d49d96c715c7e9caf6423900a2285c73cee1 | |
parent | 5a9796940cefbed2e7cf3a02021766444375a1ff (diff) | |
download | fork-ledger-646a46b53bae37ebd93f21b81bb3cde232a481d0.tar.gz fork-ledger-646a46b53bae37ebd93f21b81bb3cde232a481d0.tar.bz2 fork-ledger-646a46b53bae37ebd93f21b81bb3cde232a481d0.zip |
Generate call graphs in the Doxygen documentation.
-rw-r--r-- | doc/Doxyfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile index 4efaa651..ffda93eb 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -1288,7 +1288,7 @@ UML_LOOK = YES # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. -TEMPLATE_RELATIONS = NO +TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented @@ -1310,7 +1310,7 @@ INCLUDED_BY_GRAPH = YES # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. -CALL_GRAPH = NO +CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function @@ -1318,7 +1318,7 @@ CALL_GRAPH = NO # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. -CALLER_GRAPH = NO +CALLER_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. |