You've already forked CM4Stack_lvgl
mirror of
https://github.com/m5stack/CM4Stack_lvgl.git
synced 2026-05-20 10:51:21 -07:00
18 lines
264 B
Bash
Executable File
18 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
### Copy the lvgl related library from example Basic to current directory
|
|
|
|
|
|
help() {
|
|
sed -rn 's/^### ?//;T;p' "$0"
|
|
}
|
|
|
|
|
|
if [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]]; then
|
|
help
|
|
exit 1
|
|
fi
|
|
|
|
|
|
cp -r ../Basic/lv_porting .
|
|
cp -r ../Basic/lvgl .
|