@@ -216,7 +216,8 @@ SEPARATE_MEMBER_PAGES = NO
216
216
# uses this value to replace tabs by spaces in code fragments.
217
217
# Minimum value: 1, maximum value: 16, default value: 4.
218
218
219
- TAB_SIZE = 8
219
+ # logger.cpp contains tabs and they are matching an indentation of 4 spaces.
220
+ TAB_SIZE = 4
220
221
221
222
# This tag can be used to specify a number of aliases that act as commands in
222
223
# the documentation. An alias has the form:
@@ -758,9 +759,11 @@ WARN_LOGFILE =
758
759
# spaces.
759
760
# Note: If this tag is empty the current directory is searched.
760
761
761
- INPUT = dmd2 \
762
+ INPUT = driver \
763
+ dmd2 \
762
764
dmd2/root \
763
765
gen \
766
+ gen/passes \
764
767
ir
765
768
766
769
# This tag can be used to specify the character encoding of the source files
@@ -783,7 +786,8 @@ INPUT_ENCODING = UTF-8
783
786
784
787
FILE_PATTERNS = *.c \
785
788
*.cpp \
786
- *.h
789
+ *.h \
790
+ *.md
787
791
788
792
# The RECURSIVE tag can be used to specify whether or not subdirectories should
789
793
# be searched for input files as well.
@@ -899,7 +903,7 @@ FILTER_SOURCE_PATTERNS =
899
903
# (index.html). This can be useful if you have a project on for instance GitHub
900
904
# and want to reuse the introduction page also for the doxygen output.
901
905
902
- USE_MDFILE_AS_MAINPAGE =
906
+ USE_MDFILE_AS_MAINPAGE = README.md
903
907
904
908
#---------------------------------------------------------------------------
905
909
# Configuration options related to source browsing
@@ -912,13 +916,13 @@ USE_MDFILE_AS_MAINPAGE =
912
916
# also VERBATIM_HEADERS is set to NO.
913
917
# The default value is: NO.
914
918
915
- SOURCE_BROWSER = NO
919
+ SOURCE_BROWSER = YES
916
920
917
921
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
918
922
# classes and enums directly into the documentation.
919
923
# The default value is: NO.
920
924
921
- INLINE_SOURCES = NO
925
+ INLINE_SOURCES = YES
922
926
923
927
# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
924
928
# special comment blocks from generated source code fragments. Normal C, C++ and
@@ -2335,7 +2339,7 @@ PLANTUML_INCLUDE_PATH =
2335
2339
# Minimum value: 0, maximum value: 10000, default value: 50.
2336
2340
# This tag requires that the tag HAVE_DOT is set to YES.
2337
2341
2338
- DOT_GRAPH_MAX_NODES = 50
2342
+ DOT_GRAPH_MAX_NODES = 1000
2339
2343
2340
2344
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2341
2345
# generated by dot. A depth value of 3 means that only nodes reachable from the
0 commit comments