diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-08-15 15:36:29 -0400 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2019-08-15 15:36:29 -0400 |
commit | f5063b8733b0081e689894ba27a727549cb48321 (patch) | |
tree | 4d8824e48ec703d43507659901618986d0e19335 /src/modules | |
parent | 10c0e37a72e4e7ddfa17c476ae6fa6feb6bc00ea (diff) | |
download | efl-f5063b8733b0081e689894ba27a727549cb48321.tar.gz |
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
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/ecore_imf/wayland/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/ecore_imf/wayland/meson.build b/src/modules/ecore_imf/wayland/meson.build index f2c6e53dde..f49cc3f0fb 100644 --- a/src/modules/ecore_imf/wayland/meson.build +++ b/src/modules/ecore_imf/wayland/meson.build @@ -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, |