summaryrefslogtreecommitdiff
path: root/src/libcamera
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2022-05-09 13:10:18 +0300
committerKieran Bingham <kieran.bingham@ideasonboard.com>2022-05-10 13:53:43 +0200
commit1ddda31f14e0aa89057203b61793d75275e8cf34 (patch)
treedc289624c026e55dde24f7682950becf50e91c7d /src/libcamera
parent68fd4b3c9137ddf2416f9dc82d3e1964fcbd5bfd (diff)
meson: Use new project_*_root() functions
meson.source_root() and meson.build_root() are deprecated. Use meson.project_source_root() and meson.project_build_root() instead. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera')
-rw-r--r--src/libcamera/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build
index f8e18e03..75d3a692 100644
--- a/src/libcamera/meson.build
+++ b/src/libcamera/meson.build
@@ -100,11 +100,11 @@ endforeach
libcamera_sources += control_sources
-gen_version = meson.source_root() / 'utils' / 'gen-version.sh'
+gen_version = meson.project_source_root() / 'utils' / 'gen-version.sh'
# Use vcs_tag() and not configure_file() or run_command(), to ensure that the
# version gets updated with every ninja build and not just at meson setup time.
-version_cpp = vcs_tag(command : [gen_version, meson.build_root(), meson.source_root()],
+version_cpp = vcs_tag(command : [gen_version, meson.project_build_root(), meson.project_source_root()],
input : 'version.cpp.in',
output : 'version.cpp',
fallback : meson.project_version())