From 46b6e4b52cbfb0f16bc9347a701975eabdafa9ff Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 26 Jul 2014 21:12:48 -0700 Subject: [PATCH] Run doxygen on ReadTheDocs. --- doc/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index ab130b01..283edc9f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -25,6 +25,9 @@ import sys, os, re sys.path.append("../breathe") +if os.environ.get('READTHEDOCS', None) == 'True': + subprocess.call('doxygen') + # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.ifconfig', 'breathe']