From 305d73cd2cb7386508c67c53894e4939a748352d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Tue, 15 Jul 2025 15:30:31 +0200 Subject: [PATCH] Documentation: Make `doxygen-internal` depend on public inputs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The internal documentation is a superset of the public one, so make the `doxygen-internal` target depend on the public input files. Otherwise the internal documentation is not rebuilt if a "public" file changes. Before: $ touch src/libcamera/camera.cpp $ ninja -C build -v # ... [6/116] /usr/bin/doxygen Documentation/Doxyfile-public # ... After: $ touch src/libcamera/camera.cpp $ ninja -C build -v # ... [6/117] /usr/bin/doxygen Documentation/Doxyfile-public # ... [9/117] /usr/bin/doxygen Documentation/Doxyfile-internal # ... Signed-off-by: Barnabás Pőcze Reviewed-by: Daniel Scally Reviewed-by: Kieran Bingham --- Documentation/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/meson.build b/Documentation/meson.build index 0fc5909d0..3afdcc1a8 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -103,6 +103,7 @@ if doxygen.found() and dot.found() input : [ doxyfile, doxyfile_common, + doxygen_public_input, doxygen_internal_input, ], output : 'internal-api-html',