2021-03-26 16:28:10 +05:30
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
|
|
|
|
|
|
project = 'WirePlumber'
|
2021-05-17 15:48:38 +03:00
|
|
|
copyright = '2021, Collabora'
|
2021-03-26 16:28:10 +05:30
|
|
|
author = 'Collabora'
|
|
|
|
|
|
|
|
|
|
# The full version, including alpha/beta/rc tags
|
2021-05-17 15:48:38 +03:00
|
|
|
release = '@VERSION@'
|
2021-03-26 16:28:10 +05:30
|
|
|
|
|
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
# -- Breathe configuration ---------------------------------------------------
|
2021-03-26 16:28:10 +05:30
|
|
|
|
|
|
|
|
extensions = [
|
2021-05-19 18:58:19 +03:00
|
|
|
'breathe',
|
|
|
|
|
'sphinx_rtd_theme',
|
2021-05-21 18:30:46 +03:00
|
|
|
'sphinx.ext.graphviz',
|
2021-03-26 16:28:10 +05:30
|
|
|
]
|
|
|
|
|
|
2021-05-17 15:48:38 +03:00
|
|
|
breathe_projects = {
|
|
|
|
|
"WirePlumber": "@OUTDIR@/wp/xml",
|
|
|
|
|
"WirePlumber_Lua" : "@OUTDIR@/lua/xml",
|
|
|
|
|
}
|
2021-03-26 16:28:10 +05:30
|
|
|
breathe_default_project = "WirePlumber"
|
|
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
breathe_default_members = ('members', 'protected-members', 'undoc-members')
|
2021-03-26 16:28:10 +05:30
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
primary_domain = 'c'
|
2021-03-26 16:28:10 +05:30
|
|
|
breathe_domain_by_extension = {
|
|
|
|
|
"h" : "c",
|
|
|
|
|
"c" : "c",
|
|
|
|
|
}
|
2021-05-19 18:58:19 +03:00
|
|
|
breathe_show_define_initializer = True
|
|
|
|
|
breathe_show_enumvalue_initializer = True
|
2021-03-26 16:28:10 +05:30
|
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
html_theme = "sphinx_rtd_theme"
|
2021-03-26 16:28:10 +05:30
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
html_theme_options = {
|
|
|
|
|
"display_version": True,
|
|
|
|
|
"prev_next_buttons_location": "both",
|
|
|
|
|
"style_external_links": True,
|
|
|
|
|
"style_nav_header_background": "#729fcf",
|
|
|
|
|
}
|
2021-03-26 16:28:10 +05:30
|
|
|
|
2021-05-19 18:58:19 +03:00
|
|
|
html_static_path = ['@SRCDIR@/_static']
|
|
|
|
|
html_css_files = ['custom.css']
|
2021-05-21 18:30:46 +03:00
|
|
|
|
|
|
|
|
graphviz_output_format = "svg"
|