summaryrefslogtreecommitdiffstats
path: root/lvgl/wscript
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijaykumar9597@gmail.com>2019-09-18 02:56:46 +0530
committerChris Johns <chrisj@rtems.org>2019-09-20 14:21:57 +1000
commit4c71eb2a7b742aca65eda1ab343aa1a646aea692 (patch)
tree3a422368caed1b9b09085b91c9f7f73452bd52d1 /lvgl/wscript
parentupdate rtems_waf (diff)
downloadrtems-examples-4c71eb2a7b742aca65eda1ab343aa1a646aea692.tar.bz2
Add lvgl/hello: Sample Hello world app using littleVGL and libbsd
Diffstat (limited to 'lvgl/wscript')
-rw-r--r--lvgl/wscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/lvgl/wscript b/lvgl/wscript
new file mode 100644
index 0000000..e699554
--- /dev/null
+++ b/lvgl/wscript
@@ -0,0 +1,13 @@
+# Copyright 2019 Vijay Kumar Banerjee (vijaykumar9597@gmail.com)
+#
+# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
+#
+
+import rtems_waf.rtems as rtems
+import rtems_waf.rtems_bsd as rtems_bsd
+
+def configure(conf):
+ conf.recurse('hello')
+
+def build(bld):
+ bld.recurse('hello')