From 0b882475adb07cdc96fe4a585819b28b102a2b81 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 5 Apr 2020 00:40:15 +0200 Subject: [PATCH] build: use meson.override_dependency When built as a subproject, this removes the need for the parent project to know about the dependency variable name. This requires Meson 0.54.0. --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 0f4e541f..e75d8028 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', version: '0.10.0', license: 'MIT', - meson_version: '>=0.51.2', + meson_version: '>=0.54.0', default_options: [ 'c_std=c11', 'warning_level=2', @@ -167,6 +167,8 @@ wlroots = declare_dependency( include_directories: wlr_inc, ) +meson.override_dependency('wlroots', wlroots) + summary = [ '', '----------------',