We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c40dc commit a1349e8Copy full SHA for a1349e8
2 files changed
docs/README.md
@@ -9,9 +9,7 @@ Install [Doxygen](http://www.doxygen.nl/manual/install.html).
9
Install sphinx, breathe and the theme:
10
11
```
12
-pip install git+https://github.com/sphinx-doc/sphinx
13
-pip install breathe
14
-pip install sphinx_rtd_theme
+pip install -r requirements.txt
15
16
17
### Build the Docs
docs/source/conf.py
@@ -1,7 +1,14 @@
1
# -*- coding: utf-8 -*-
2
3
+import os
4
+import subprocess
5
+
6
import sphinx_rtd_theme
7
8
+read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
+if read_the_docs_build:
+ subprocess.call('cd ..; doxygen', shell=True)
# -- Project information -----------------------------------------------------
project = 'flashlight'
0 commit comments