From 57c249553e96e3e167c3f81d9a44fde277977cca Mon Sep 17 00:00:00 2001 From: LegendGuard <49716252+LegendaryGuard@users.noreply.github.com> Date: Tue, 28 Dec 2021 23:13:31 +0100 Subject: [PATCH] Doxygen: Set DOT_NUM_THREADS to 0, being automatic, disable side bar because its visualization is messy (#21) * Upgrade doxygen version, add better implementations, sidebar added More updates from Doxygen enhancing document visualization * Set DOT_NUM_THREADS to 0, being automatic, disable side bar because its visualization is messy Set DOT_NUM_THREADS to 0, being automatic, disable side bar because its visualization is messy --- Doxyfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doxyfile b/Doxyfile index 17b8298e..07b60ace 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1524,7 +1524,7 @@ ECLIPSE_DOC_ID = org.doxygen.Project # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -DISABLE_INDEX = YES +DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag @@ -1553,7 +1553,7 @@ GENERATE_TREEVIEW = YES # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -FULL_SIDEBAR = YES +FULL_SIDEBAR = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. @@ -2335,7 +2335,7 @@ HAVE_DOT = YES # Minimum value: 0, maximum value: 32, default value: 0. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_NUM_THREADS = 2 +DOT_NUM_THREADS = 0 # When you want a differently looking font in the dot files that doxygen # generates you can specify the font name using DOT_FONTNAME. You need to make -- 2.39.2