meson: add xkbcommon to the build deps

Summary: fix T8064

Reviewers: cedric, zmike, devilhorns

Reviewed By: devilhorns

Subscribers: #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8064

Differential Revision: https://phab.enlightenment.org/D9573
This commit is contained in:
Marcel Hollerbach 2019-08-15 15:36:29 -04:00 committed by Christopher Michael
parent 10c0e37a72
commit f5063b8733
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@ mod_src = files([
'wayland_imcontext.c',
'wayland_imcontext.h'
])
mod_deps = [ecore, ecore_imf, ecore_wl2, wayland_protocol, ecore_evas, ecore_input]
libxkbcommon = dependency('xkbcommon', version : ['>=0.3.0'])
mod_deps = [ecore, ecore_imf, ecore_wl2, wayland_protocol, ecore_evas, ecore_input, libxkbcommon]
shared_module(mod_name,
mod_src,