Skip to content

Commit

Permalink
run doxygen on rtd
Browse files Browse the repository at this point in the history
  • Loading branch information
vroland committed Apr 19, 2020
1 parent 0ba6573 commit 05ca5b5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion software/firmware/doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import subprocess, os

# -- Project information -----------------------------------------------------

Expand Down Expand Up @@ -64,3 +64,8 @@
"c" : "c",
}

read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'

if read_the_docs_build:

subprocess.call('cd ../doxygen; doxygen', shell=True)

0 comments on commit 05ca5b5

Please sign in to comment.