lvgl-rs/lvgl-sys
2022-05-19 14:23:44 +02:00
..
shims Use Rgb565 as default 2020-04-21 10:52:21 +02:00
src Fix lvgl-sys not respecting DEP_LV_CONFIG_PATH 2021-05-19 14:24:01 +02:00
vendor Fix lvgl-sys not respecting DEP_LV_CONFIG_PATH 2021-05-19 14:24:01 +02:00
build.rs add use-vendored-config feature 2022-05-19 14:23:44 +02:00
Cargo.toml add use-vendored-config feature 2022-05-19 14:23:44 +02:00
README.md Add LVGL Rust Global Allocator feature 2021-05-26 20:55:38 +02:00

lvgl-sys

Rust raw bindings for LittlevGL library.

Usage

Build requires environment variables to be set:

  • DEP_LV_CONFIG_PATH: Path to the directory containing the lv_conf.h header file used for configuration of LVGL library.

We recommend the lv_conf.h file to be in your project's root directory. If so, the command to build your project would be:

$ DEP_LV_CONFIG_PATH=`pwd` cargo build