This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/core/deps/download.sh
Wenyong Huang a33a385caa
Fix littlevgl link error issues (#1006)
The littlevgl library had changed its name and domain to [LVGL](https://lvgl.io).
See https://blog.lvgl.io/2020-06-01/announcement
We change some names and links accordingly.

Also remove the cloning for tlsf library as it isn't used now.
2022-02-15 08:41:36 +08:00

21 lines
470 B
Bash
Executable File

#!/bin/bash
DEPS_ROOT=$(cd "$(dirname "$0")/" && pwd)
cd ${DEPS_ROOT}
if [ ! -d "lvgl" ]; then
echo "git pull lvgl..."
git clone https://github.com/lvgl/lvgl.git --branch v6.0.1
[ $? -eq 0 ] || exit $?
../app-framework/wgl/app/prepare_headers.sh
fi
if [ ! -d "lv_drivers" ]; then
echo "git pull lv_drivers..."
git clone https://github.com/lvgl/lv_drivers.git --branch v6.0.1
[ $? -eq 0 ] || exit $?
fi
exit 0