2020-04-12 10:19:28 +00:00
|
|
|
# lvgl-sys
|
|
|
|
Rust raw bindings for LittlevGL library.
|
2020-04-12 18:37:26 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Build requires environment variables to be set:
|
|
|
|
|
2021-05-25 23:03:07 +00:00
|
|
|
- `DEP_LV_CONFIG_PATH`: Path to the directory containing the `lv_conf.h` header file used for configuration of LVGL library.
|
2020-04-12 18:37:26 +00:00
|
|
|
|
|
|
|
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:
|
|
|
|
```shell script
|
|
|
|
$ DEP_LV_CONFIG_PATH=`pwd` cargo build
|
|
|
|
```
|