Skip to content
Snippets Groups Projects
Commit d8d3f1ab authored by Christopher Haine's avatar Christopher Haine
Browse files

RTD to build doxygen xml before using Sphinx

parent 5502eafb
No related branches found
No related tags found
No related merge requests found
Pipeline #77949 failed
......@@ -61,3 +61,14 @@ html_theme = 'alabaster'
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# let RTD know it must run doxygen first, for breathe/Sphinx to pick it up
import subprocess, os
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build:
subprocess.call('cd ../doxygen; doxygen', shell=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment