aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-06-25 16:22:28 +0200
committerLibravatar Simon Ser <contact@emersion.fr>2021-06-30 13:37:00 +0200
commit8348178c66c3c2e398013a745365b36636222c52 (patch)
tree84c17ac1427fbe63937634af552a4454644fbd2f
parentcontrib: drop incr_version script (diff)
downloadsway-8348178c66c3c2e398013a745365b36636222c52.tar.gz
sway-8348178c66c3c2e398013a745365b36636222c52.tar.zst
sway-8348178c66c3c2e398013a745365b36636222c52.zip
build: use meson.global_build_root()
meson.build_root() is deprecated. References: https://github.com/mesonbuild/meson/pull/8629
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index cbab080a..7ff085b5 100644
--- a/meson.build
+++ b/meson.build
@@ -3,7 +3,7 @@ project(
3 'c', 3 'c',
4 version: '1.6', 4 version: '1.6',
5 license: 'MIT', 5 license: 'MIT',
6 meson_version: '>=0.53.0', 6 meson_version: '>=0.58.1',
7 default_options: [ 7 default_options: [
8 'c_std=c11', 8 'c_std=c11',
9 'warning_level=2', 9 'warning_level=2',
@@ -180,7 +180,7 @@ add_project_arguments('-DSWAY_VERSION=@0@'.format(version), language: 'c')
180 180
181# Compute the relative path used by compiler invocations. 181# Compute the relative path used by compiler invocations.
182source_root = meson.current_source_dir().split('/') 182source_root = meson.current_source_dir().split('/')
183build_root = meson.build_root().split('/') 183build_root = meson.global_build_root().split('/')
184relative_dir_parts = [] 184relative_dir_parts = []
185i = 0 185i = 0
186in_prefix = true 186in_prefix = true