From a1e5549c9b5bc7fd68a1316587308d6920135c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Wed, 9 Aug 2023 17:52:13 +0200 Subject: [PATCH] Revert "doc: Switch to using docleaf for doxygen entities" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 20986ec45dbaa68f47184a57043f52c0f6796e73. Signed-off-by: Benjamin Cabé --- doc/conf.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index e772d2bb865695..551bb599b0afae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -67,7 +67,7 @@ # -- General configuration ------------------------------------------------ extensions = [ - "docleaf.doxygen", + "breathe", "sphinx.ext.todo", "sphinx.ext.extlinks", "sphinx.ext.autodoc", @@ -211,14 +211,16 @@ doxyrunner_fmt_vars = {"ZEPHYR_BASE": str(ZEPHYR_BASE), "ZEPHYR_VERSION": version} doxyrunner_outdir_var = "DOXY_OUT" -# -- Options for Docleaf plugin ------------------------------------------- +# -- Options for Breathe plugin ------------------------------------------- -docleaf_projects = {"Zephyr": str(doxyrunner_outdir / "xml")} -docleaf_default_project = "Zephyr" -docleaf_domain_by_extension = { +breathe_projects = {"Zephyr": str(doxyrunner_outdir / "xml")} +breathe_default_project = "Zephyr" +breathe_domain_by_extension = { "h": "c", "c": "c", } +breathe_show_enumvalue_initializer = True +breathe_default_members = ("members", ) cpp_id_attributes = [ "__syscall",