summaryrefslogtreecommitdiff
path: root/Documentation/Doxyfile.in
diff options
context:
space:
mode:
authorBarnabás Pőcze <pobrn@protonmail.com>2023-01-02 23:00:53 +0000
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-01-05 12:08:35 +0200
commit96cd064214aa4f190a06a9aea59b919722e98ccf (patch)
tree27c3334e05fbab079ffe30342ba30781e6d62576 /Documentation/Doxyfile.in
parent504b6437613f35de043485bd064843d6af269c74 (diff)
Documentation: Specify Doxygen OUTPUT_DIRECTORY explicitly
Currently, doxygen is run by ninja in the top-level build directory, therefore the "Documentation" folder is always created there. However, when libcamera is built as a subproject, it should not touch the top-level build directory because it can cause conflicts and because the documentation won't be created where meson thinks it will be, so the "doxygen" target will always be dirty and installation will fail. Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Documentation/Doxyfile.in')
-rw-r--r--Documentation/Doxyfile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in
index e4f0cd42..1447abdb 100644
--- a/Documentation/Doxyfile.in
+++ b/Documentation/Doxyfile.in
@@ -5,7 +5,7 @@ PROJECT_NAME = "libcamera"
PROJECT_NUMBER = "@VERSION@"
PROJECT_BRIEF = "Supporting cameras in Linux since 2019"
-OUTPUT_DIRECTORY = Documentation
+OUTPUT_DIRECTORY = "@OUTPUT_DIR@"
STRIP_FROM_PATH = "@TOP_SRCDIR@"