From ab64a67008969b550962f5b12e620540d638c21a Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Mon, 10 Jan 2022 12:35:31 +0100 Subject: [PATCH] doc: conf: specify which variable is used for output directory This is needed so that it can be re-used by other Doxygen configuration entries. Signed-off-by: Gerard Marull-Paretas --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py b/doc/conf.py index 8a68d856fc9..f851b791b5c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -185,6 +185,7 @@ doxyrunner_doxyfile = ZEPHYR_BASE / "doc" / "zephyr.doxyfile.in" doxyrunner_outdir = ZEPHYR_BUILD / "doxygen" doxyrunner_fmt = True doxyrunner_fmt_vars = {"ZEPHYR_BASE": str(ZEPHYR_BASE), "ZEPHYR_VERSION": version} +doxyrunner_outdir_var = "DOXY_OUT" # -- Options for Breathe plugin -------------------------------------------