mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
e7a0f3b99c
* kconfig: Fix invalid dependancy in fsdrv LV_USE_FS_* symbols are integers, instead of usual booleans. We must treat them as such. * ci: Get LVGL version from git tag * docu: Update Espressif readme * ci run apt update before installing
10 lines
334 B
Bash
Executable File
10 lines
334 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
# Install Linux package prerequisites needed for LVGL development
|
|
# and testing. Some less-common development packages are not included
|
|
# here, such as MicroPython and PC simulator packages.
|
|
#
|
|
# Note: This script is run by the CI workflows.
|
|
sudo apt update
|
|
sudo apt install gcc python3 libpng-dev ruby-full gcovr cmake
|