ecore_fb: Add missing tslib dependency

If EFL is built with tslib support, which is used by ecore_fb, then we
need to add a dependency on tslib else the build will fail to compile
(undefined reference to ts_open function).
This commit is contained in:
Christopher Michael 2019-01-11 09:18:36 -05:00
parent f85c261509
commit e676c989d1
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
ecore_fb_deps = [ecore, ecore_input]
ecore_fb_pub_deps = [eina]
if get_option('tslib')
ecore_fb_deps += dependency('tslib')
endif
ecore_fb_header_src = [
'Ecore_Fb.h'
]