summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-02-08 12:04:50 +0100
committerBastien Nocera <hadess@hadess.net>2022-02-08 12:28:50 +0100
commit261b15fc1c152100aa953d55536bcde12b6fce72 (patch)
treed587c4944c2faf60ffd1bc12f89674f1c475fd80 /tests
parent41d28328dc678ace61cec834dca299ae0001777f (diff)
downloadgnome-bluetooth-261b15fc1c152100aa953d55536bcde12b6fce72.tar.gz
build: Fix meson deprecation warnings
NOTICE: Future-deprecated features used: * 0.55.0: {'ExternalProgram.path'} * 0.56.0: {'meson.source_root', 'meson.build_root'}
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 70f08dbe..d7d87764 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -2,8 +2,8 @@ if enable_gir and has_dbusmock
integration_test = find_program('integration-test.py')
envs = environment()
- envs.set ('top_builddir', meson.build_root())
- envs.set ('top_srcdir', meson.source_root())
+ envs.set ('top_builddir', meson.global_build_root())
+ envs.set ('top_srcdir', meson.global_source_root())
test_deps = [ gnomebt_priv_gir, ]