From 0335ae9566310e1aa06f17a4b87d98775fd03622 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 18 Feb 2023 11:05:52 +0100 Subject: [PATCH] build: enable subproject for libxkbcommon References: https://github.com/xkbcommon/libxkbcommon/pull/315 --- meson.build | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e11e52f1..ff2778ce 100644 --- a/meson.build +++ b/meson.build @@ -129,7 +129,16 @@ drm = dependency('libdrm', 'tests=false', ], ) -xkbcommon = dependency('xkbcommon') +xkbcommon = dependency( + 'xkbcommon', + fallback: 'libxkbcommon', + default_options: [ + 'enable-tools=false', + 'enable-x11=false', + 'enable-docs=false', + 'enable-xkbregistry=false', + ], +) pixman = dependency('pixman-1', version: '>=0.42.0', fallback: 'pixman',