Files
CM4Stack_lvgl/CopyLib.sh
dianjixz d100745ed4 [update]
2023-04-03 14:28:35 +08:00

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 .