Skip to content

Commit 16bdfd8

Browse files
committed
--in=doc/web_doxyfile.in
1 parent ce799b3 commit 16bdfd8

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

doc/web_doxyfile.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ USE_MDFILE_AS_MAINPAGE =
900900
# also VERBATIM_HEADERS is set to NO.
901901
# The default value is: NO.
902902

903-
SOURCE_BROWSER = YES
903+
SOURCE_BROWSER = NO
904904

905905
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
906906
# classes and enums directly into the documentation.
@@ -919,13 +919,13 @@ STRIP_CODE_COMMENTS = YES
919919
# function all documented functions referencing it will be listed.
920920
# The default value is: NO.
921921

922-
REFERENCED_BY_RELATION = YES
922+
REFERENCED_BY_RELATION = NO
923923

924924
# If the REFERENCES_RELATION tag is set to YES then for each documented function
925925
# all documented entities called/used by that function will be listed.
926926
# The default value is: NO.
927927

928-
REFERENCES_RELATION = YES
928+
REFERENCES_RELATION = NO
929929

930930
# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
931931
# to YES, then the hyperlinks from functions in REFERENCES_RELATION and
@@ -973,7 +973,7 @@ USE_HTAGS = NO
973973
# See also: Section \class.
974974
# The default value is: YES.
975975

976-
VERBATIM_HEADERS = YES
976+
VERBATIM_HEADERS = NO
977977

978978
#---------------------------------------------------------------------------
979979
# Configuration options related to the alphabetical class index

doxybuild.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def yesno(bool):
130130
if not os.path.isdir(output_dir):
131131
os.makedirs(output_dir)
132132

133-
do_subst_in_file('doc/doxyfile', 'doc/doxyfile.in', subst_keys)
133+
do_subst_in_file('doc/doxyfile', options.doxyfile_input_path, subst_keys)
134134
run_doxygen(options.doxygen_path, 'doc/doxyfile', 'doc', is_silent=options.silent)
135135
if not options.silent:
136136
print(open(warning_log_path, 'r').read())
@@ -169,6 +169,8 @@ def main():
169169
help="""Path to GraphViz dot tool. Must be full qualified path. [Default: %default]""")
170170
parser.add_option('--doxygen', dest="doxygen_path", action='store', default=find_program('doxygen'),
171171
help="""Path to Doxygen tool. [Default: %default]""")
172+
parser.add_option('--in', dest="doxyfile_input_path", action='store', default='doc/doxyfile.in',
173+
help="""Path to doxygen inputs. [Default: %default]""")
172174
parser.add_option('--with-html-help', dest="with_html_help", action='store_true', default=False,
173175
help="""Enable generation of Microsoft HTML HELP""")
174176
parser.add_option('--no-uml-look', dest="with_uml_look", action='store_false', default=True,

0 commit comments

Comments
 (0)