knx/doc/sphinx/conf.py

7 lines
200 B
Python
Raw Normal View History

2019-05-13 23:11:00 +02:00
import subprocess, os
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build:
subprocess.call('cd .. ; doxygen', shell=True)
html_extra_path = ['../build/html']