meson: use project build root for doxygen output
authorSimon Ser <contact@emersion.fr>
Tue, 5 Jan 2021 11:05:11 +0000 (12:05 +0100)
committerSimon Ser <contact@emersion.fr>
Sat, 5 Feb 2022 14:39:23 +0000 (15:39 +0100)
meson.build_root() returns the parent's build directory if Wayland is
a subproject. This fails with:

    error: tag OUTPUT_DIRECTORY: Output directory '<parent-build-dir>/doc/doxygen' does not exist and cannot be created

Instead, use meson.project_build_root(), which returns the subproject's
build directory.

Signed-off-by: Simon Ser <contact@emersion.fr>
doc/doxygen/meson.build

index f2bee14..9f27ba8 100644 (file)
@@ -13,7 +13,7 @@ dot_map = []
 
 doxygen_conf = configuration_data()
 doxygen_conf.set('VERSION', meson.project_version())
-doxygen_conf.set('top_builddir', meson.build_root())
+doxygen_conf.set('top_builddir', meson.project_build_root())
 wayland_doxygen = configure_file(
        input: 'wayland.doxygen.in',
        output: 'wayland.doxygen',