From 275ba9a09b4b61e8da4d4881694afb0afd4855db Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Mon, 20 May 2019 01:29:31 -0700 Subject: [PATCH] Batch file to make running Doxygen easier. Improvements to Doxyfile control file. --- Doxyfile | 8 ++++---- makedoxy.bat | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 makedoxy.bat diff --git a/Doxyfile b/Doxyfile index c0accd20..aec9bdb4 100644 --- a/Doxyfile +++ b/Doxyfile @@ -50,7 +50,7 @@ PROJECT_NUMBER = 1.0.x # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = OpenSource CPAP Analysis Reporter +PROJECT_BRIEF = Open_Source_CPAP_Analysis_Reporter # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not @@ -1643,7 +1643,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 @@ -1651,7 +1651,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 generate a graphical hierarchy of all classes instead of a textual one. @@ -1721,7 +1721,7 @@ DOT_TRANSPARENT = NO # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. -DOT_MULTI_TARGETS = NO +DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and diff --git a/makedoxy.bat b/makedoxy.bat new file mode 100644 index 00000000..a7f75cc6 --- /dev/null +++ b/makedoxy.bat @@ -0,0 +1,4 @@ +setlocal +set path="c:\Program Files (x86)\Graphviz2.38\bin";%path% +doxygen +endlocal \ No newline at end of file