mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 06:00:01 +08:00

* This is still broken. * Rename sphinx_rtd_theme so it doesn't pickup locally installed ones * Add a hack to theme.css to get around inliner bug. * Some unrelated fixups in common/waf.py Unfortunatly several dozen fixes got merged into this.
12 lines
231 B
Python
12 lines
231 B
Python
import sys, os
|
|
sys.path.append(os.path.abspath('../common/'))
|
|
|
|
from conf import *
|
|
|
|
version = '1.0'
|
|
release = '5.0'
|
|
|
|
latex_documents = [
|
|
('index', 'filesystem.tex', u'RTEMS Filesystem', u'RTEMS Documentation Project', 'manual'),
|
|
]
|