Skip to content

Commit 2c75e6f

Browse files
committed
Test improvements for publish website
* Improve publishing (we need to test it) * Switch to using dev container * using docs-prerelease branch on fork Note new build now only publishes on `github-pages` rather than the previous `gh-pages` as causes issues with branch protection rules.
1 parent 2d14c44 commit 2c75e6f

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

Doxyfile

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,6 @@ WARN_AS_ERROR = NO
872872
# and the warning text. Optionally the format may contain $version, which will
873873
# be replaced by the version of the file (if it could be obtained via
874874
# FILE_VERSION_FILTER)
875-
# See also: WARN_LINE_FORMAT
876875
# The default value is: $file:$line: $text.
877876

878877
WARN_FORMAT = "$file:$line: $text"
@@ -906,8 +905,7 @@ WARN_LOGFILE =
906905
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
907906
# Note: If this tag is empty the current directory is searched.
908907

909-
INPUT = ./src/README.md \
910-
./src
908+
INPUT = ./src/README.md ./src
911909

912910
# This tag can be used to specify the character encoding of the source files
913911
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -1157,23 +1155,23 @@ VERBATIM_HEADERS = YES
11571155
# generated with the -Duse_libclang=ON option for CMake.
11581156
# The default value is: NO.
11591157

1160-
CLANG_ASSISTED_PARSING = NO
1158+
#CLANG_ASSISTED_PARSING = NO
11611159

11621160
# If the CLANG_ASSISTED_PARSING tag is set to YES and the CLANG_ADD_INC_PATHS
11631161
# tag is set to YES then doxygen will add the directory of each input to the
11641162
# include path.
11651163
# The default value is: YES.
11661164
# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
11671165

1168-
CLANG_ADD_INC_PATHS = YES
1166+
#CLANG_ADD_INC_PATHS = NO
11691167

11701168
# If clang assisted parsing is enabled you can provide the compiler with command
11711169
# line options that you would normally use when invoking the compiler. Note that
11721170
# the include paths will already be set by doxygen for the files and directories
11731171
# specified with INPUT and INCLUDE_PATH.
11741172
# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
11751173

1176-
CLANG_OPTIONS =
1174+
#CLANG_OPTIONS =
11771175

11781176
# If clang assisted parsing is enabled you can provide the clang parser with the
11791177
# path to the directory containing a file called compile_commands.json. This
@@ -1186,7 +1184,7 @@ CLANG_OPTIONS =
11861184
# Note: The availability of this option depends on whether or not doxygen was
11871185
# generated with the -Duse_libclang=ON option for CMake.
11881186

1189-
CLANG_DATABASE_PATH =
1187+
#CLANG_DATABASE_PATH =
11901188

11911189
#---------------------------------------------------------------------------
11921190
# Configuration options related to the alphabetical class index
@@ -1668,7 +1666,7 @@ FORMULA_FONTSIZE = 10
16681666
# The default value is: YES.
16691667
# This tag requires that the tag GENERATE_HTML is set to YES.
16701668

1671-
FORMULA_TRANSPARENT = YES
1669+
#FORMULA_TRANSPARENT = YES
16721670

16731671
# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
16741672
# to create new LaTeX commands to be used in formulas as building blocks. See
@@ -2282,8 +2280,8 @@ INCLUDE_FILE_PATTERNS =
22822280
# recursively expanded use the := operator instead of the = operator.
22832281
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
22842282

2285-
PREDEFINED = "__attribute__(x)=" \
2286-
"_Static_assert(c,s)="
2283+
PREDEFINED = "__attribute__(x)= " \
2284+
"_Static_assert(c,s)= "
22872285

22882286
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
22892287
# tag can be used to specify a list of macro names that should be expanded. The
@@ -2394,14 +2392,14 @@ DOT_NUM_THREADS = 0
23942392
# The default value is: Helvetica.
23952393
# This tag requires that the tag HAVE_DOT is set to YES.
23962394

2397-
DOT_FONTNAME = Helvetica
2395+
#DOT_FONTNAME = Helvetica
23982396

23992397
# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
24002398
# dot graphs.
24012399
# Minimum value: 4, maximum value: 24, default value: 10.
24022400
# This tag requires that the tag HAVE_DOT is set to YES.
24032401

2404-
DOT_FONTSIZE = 10
2402+
#DOT_FONTSIZE = 10
24052403

24062404
# By default doxygen will tell dot to use the default font as specified with
24072405
# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
@@ -2659,7 +2657,7 @@ MAX_DOT_GRAPH_DEPTH = 0
26592657
# The default value is: NO.
26602658
# This tag requires that the tag HAVE_DOT is set to YES.
26612659

2662-
DOT_TRANSPARENT = NO
2660+
#DOT_TRANSPARENT = NO
26632661

26642662
# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
26652663
# files in one run (i.e. multiple -o and -T options on the command line). This

0 commit comments

Comments
 (0)