docs: use doxygen-awesome-css (#2758)

This commit is contained in:
ReenigneArcher
2024-06-26 10:44:32 -04:00
committed by GitHub
parent cac1ca37aa
commit 7e9a2dd621
10 changed files with 166 additions and 9 deletions

View File

@@ -128,9 +128,12 @@ todo_include_todos = True
# https://github.com/readthedocs/readthedocs.org/blob/eadf6ac6dc6abc760a91e1cb147cc3c5f37d1ea8/docs/conf.py#L235-L236
suppress_warnings = ["epub.unknown_project_files"]
doxygen_cmd = os.getenv('DOXY_PATH', 'doxygen')
print(f'doxygen command: {doxygen_cmd}')
# get doxygen version
doxy_version = _run_subprocess(
args_list=['doxygen', '--version'],
args_list=[doxygen_cmd, '--version'],
cwd=source_dir,
)
@@ -147,7 +150,7 @@ for d in directories:
# run doxygen
doxy_proc = _run_subprocess(
args_list=['doxygen', 'Doxyfile'],
args_list=[doxygen_cmd, 'Doxyfile'],
cwd=source_dir
)