wireplumber/docs/conf.py.in

47 lines
1.1 KiB
Python
Raw Normal View History

# -- Project information -----------------------------------------------------
project = 'WirePlumber'
copyright = '2021, Collabora'
author = 'Collabora'
# The full version, including alpha/beta/rc tags
release = '@VERSION@'
# -- Breathe configuration ---------------------------------------------------
extensions = [
'breathe',
'sphinx_rtd_theme',
]
breathe_projects = {
"WirePlumber": "@OUTDIR@/wp/xml",
"WirePlumber_Lua" : "@OUTDIR@/lua/xml",
}
breathe_default_project = "WirePlumber"
breathe_default_members = ('members', 'protected-members', 'undoc-members')
primary_domain = 'c'
breathe_domain_by_extension = {
"h" : "c",
"c" : "c",
}
breathe_show_define_initializer = True
breathe_show_enumvalue_initializer = True
# -- Options for HTML output -------------------------------------------------
html_theme = "sphinx_rtd_theme"
html_theme_options = {
"display_version": True,
"prev_next_buttons_location": "both",
"style_external_links": True,
"style_nav_header_background": "#729fcf",
}
html_static_path = ['@SRCDIR@/_static']
html_css_files = ['custom.css']