Skip to content

Commit ecfe51c

Browse files
committed
Doc fixes
1 parent be20c0d commit ecfe51c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

doc/Jamfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import sequence ;
66

77
# All paths must be absolute to work well with the Doxygen rules.
88
path-constant this_dir : . ;
9+
path-constant redis_root_dir : .. ;
910
path-constant include_dir : ../include ;
1011
path-constant examples_dir : ../examples ;
1112
path-constant readme : ../README.md ;
@@ -17,7 +18,7 @@ local examples = [ path.glob-tree $(examples_dir) : *.hpp *.cpp ] ;
1718

1819
# If passed directly, several HTML_EXTRA_STYLESHEET tags are generated,
1920
# which is not correct.
20-
local stylesheet_arg = [ sequence.join $(stylesheet_files) : " " ] ;
21+
local stylesheet_arg = [ sequence.join "\"$(stylesheet_files)\"" : " " ] ;
2122

2223
doxygen autodoc.html
2324
:
@@ -26,6 +27,8 @@ doxygen autodoc.html
2627
<doxygen:param>PROJECT_NAME=boost_redis
2728
<doxygen:param>PROJECT_NUMBER="1.4.2"
2829
<doxygen:param>PROJECT_BRIEF="A redis client library"
30+
<doxygen:param>"STRIP_FROM_PATH=\"$(redis_root_dir)\""
31+
<doxygen:param>"STRIP_FROM_INC_PATH=\"$(include_dir)\""
2932
<doxygen:param>BUILTIN_STL_SUPPORT=YES
3033
<doxygen:param>INLINE_SIMPLE_STRUCTS=YES
3134
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
@@ -35,11 +38,11 @@ doxygen autodoc.html
3538
<doxygen:param>SORT_MEMBERS_CTORS_1ST=YES
3639
<doxygen:param>SHOW_FILES=NO
3740
<doxygen:param>SHOW_NAMESPACES=NO
38-
<doxygen:param>LAYOUT_FILE=$(layout_file)
41+
<doxygen:param>"LAYOUT_FILE=\"$(layout_file)\""
3942
<doxygen:param>WARN_IF_INCOMPLETE_DOC=YES
4043
<doxygen:param>FILE_PATTERNS="*.hpp *.cpp"
4144
<doxygen:param>EXCLUDE_SYMBOLS=std
42-
<doxygen:param>USE_MDFILE_AS_MAINPAGE=$(readme)
45+
<doxygen:param>"USE_MDFILE_AS_MAINPAGE=\"$(readme)\""
4346
<doxygen:param>SOURCE_BROWSER=YES
4447
<doxygen:param>"HTML_EXTRA_STYLESHEET=$(stylesheet_arg)"
4548
<doxygen:param>HTML_TIMESTAMP=YES
@@ -50,7 +53,6 @@ doxygen autodoc.html
5053
<doxygen:param>USE_MATHJAX=YES
5154
<doxygen:param>MATHJAX_VERSION=MathJax_2
5255
<doxygen:param>MATHJAX_RELPATH="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/"
53-
<doxygen:param>GENERATE_LATEX=NO
5456
<doxygen:param>MACRO_EXPANSION=YES
5557
<doxygen:param>HAVE_DOT=NO
5658
<doxygen:param>CLASS_GRAPH=NO

0 commit comments

Comments
 (0)