summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2023-02-24 18:45:39 +0100
committerCarlos Garnacho <carlosg@gnome.org>2023-02-27 09:18:57 +0100
commitf34ebd68cbc3065d3210443e1004b514e77da520 (patch)
tree00834256a7c0f465442c391751c65fe4c66afa3b
parentc27eb6be6ce747c4112f528acd214d63f1504476 (diff)
downloadtracker-f34ebd68cbc3065d3210443e1004b514e77da520.tar.gz
build: Depend on meson >= 0.55
We'll use some features from there.
-rw-r--r--examples/python/meson.build2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/python/meson.build b/examples/python/meson.build
index 47bac5af0..65e329d2c 100644
--- a/examples/python/meson.build
+++ b/examples/python/meson.build
@@ -17,7 +17,7 @@ examples = [
foreach example_name: examples
file = meson.current_source_dir() / '@0@.py'.format(example_name)
test(example_name, python,
- args: sandbox_python_args + [python.path(), file],
+ args: sandbox_python_args + [python.full_path(), file],
env: env,
suite: 'examples')
endforeach
diff --git a/meson.build b/meson.build
index 48fd039ad..a374b820e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('tracker', 'c',
version: '3.5.0.beta',
- meson_version: '>=0.53',
+ meson_version: '>=0.55',
default_options: [
'c_std=c99',
'warning_level=2'])