Files
wireplumber/docs/conf.py.in
George Kiagiadakis 72297e0909 docs: set breathe_default_members to get struct members to show up in the docs
Otherwise structs do not have any members shown by default.
This was accidentally removed in an older commit.
2021-06-08 17:14:54 +03:00

46 lines
1.0 KiB
Python

# -- Project information -----------------------------------------------------
project = 'WirePlumber'
copyright = '2021, Collabora'
author = 'Collabora'
release = '@VERSION@'
version = '@VERSION@'
# -- Breathe configuration ---------------------------------------------------
extensions = [
'breathe',
'sphinx_rtd_theme',
'sphinx.ext.graphviz',
]
breathe_projects = {
"WirePlumber": "@OUTDIR@/wp/xml",
}
breathe_default_project = "WirePlumber"
breathe_default_members = ('members', 'undoc-members')
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,
}
html_static_path = ['@SRCDIR@/_static']
html_css_files = ['custom.css']
graphviz_output_format = "svg"
pygments_style = "friendly"