summaryrefslogtreecommitdiffstats
path: root/lvgl/wscript
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2020-06-04 22:43:27 +0530
committerVijay Kumar Banerjee <vijay@rtems.org>2020-06-14 18:29:53 +0530
commit6ef016e1e428e798b184e397104ccf7039661925 (patch)
treec03946b84847c7cdc908c313e0418b8791d00de6 /lvgl/wscript
parentfilesystem: Fix file not found error (diff)
downloadrtems-examples-6ef016e1e428e798b184e397104ccf7039661925.tar.bz2
lvgl: Add a gui example with evdev
This example uses the evdev interface to add mouse input to interact with the GUI
Diffstat (limited to '')
-rw-r--r--lvgl/wscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/lvgl/wscript b/lvgl/wscript
index e699554..064ebed 100644
--- a/lvgl/wscript
+++ b/lvgl/wscript
@@ -7,7 +7,10 @@ import rtems_waf.rtems as rtems
import rtems_waf.rtems_bsd as rtems_bsd
def configure(conf):
- conf.recurse('hello')
+ rtems.check_lib_path(conf, lib = 'm')
+ rtems.check_lib_path(conf, lib = 'lvgl', mandatory = False)
+ rtems.check_lib_path(conf, lib = 'bsd', mandatory = False)
def build(bld):
bld.recurse('hello')
+ bld.recurse('gui')