blob: 2a303c93f67278af94ea2b1c41fabbd7ff1cbfe4 [file] [log] [blame]
swissChilic41a15e2021-06-16 09:14:56 -07001import subprocess, os
2
3rtd = os.environ.get('READTHEDOCS', None) == 'True'
4
5if rtd:
6 print('Generating kernel doxygen')
7 subprocess.call('doxygen kernel.doxyfile', shell=True)
8 print('Generating lisp doxygen')
9 subprocess.call('doxygen lisp.doxyfile', shell=True)
10
swissChilie00e88a2021-05-30 17:54:26 -070011project = 'Bluejay'
swissChili01ba07f2022-07-03 21:36:42 -070012copyright = '2022, swissChili'
swissChilie00e88a2021-05-30 17:54:26 -070013author = 'swissChili'
14
15extensions = [
swissChilic41a15e2021-06-16 09:14:56 -070016 'breathe'
swissChilie00e88a2021-05-30 17:54:26 -070017]
18
swissChilic41a15e2021-06-16 09:14:56 -070019breathe_default_project = 'Kernel'
20
swissChilie00e88a2021-05-30 17:54:26 -070021templates_path = ['_templates']
22
swissChilic41a15e2021-06-16 09:14:56 -070023exclude_patterns = ['_build', '_dox_kernel', '_dox_lisp', 'Thumbs.db', '.DS_Store']
swissChilie00e88a2021-05-30 17:54:26 -070024
swissChilic41a15e2021-06-16 09:14:56 -070025html_theme = 'sphinx_rtd_theme'
swissChilie00e88a2021-05-30 17:54:26 -070026
27html_static_path = ['_static']