# -- Project information ----------------------------------------------------- project = 'WirePlumber' copyright = '2021-2024, 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"