ecore_fb: Add missing tslib dependency
authorChristopher Michael <cp.michael@samsung.com>
Fri, 11 Jan 2019 14:18:36 +0000 (09:18 -0500)
committerJiyoun Park <jy0703.park@samsung.com>
Wed, 16 Jan 2019 02:40:20 +0000 (11:40 +0900)
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).

src/lib/ecore_fb/meson.build

index 0bcf11e..a2eb540 100644 (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'
 ]