Fix lvgl-sys not respecting DEP_LV_CONFIG_PATH #45
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: rafaelcaricio/lvgl-rs#45
Loading…
Reference in a new issue
No description provided.
Delete branch "fix-lv-conf-include"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Previously, the vendored
lv_conf.h
file was always before theDEP_LV_CONFIG_PATH
environment variable in the include path (lvgl-sys/vendor
), meaning that it was always used. This caused the environment variable to always be ignored. This PR moves the vendored config file to its own directory (lvgl-sys/vendor/include/lv_conf.h
) so that theDEP_LV_CONFIG_PATH
environment variable is properly used.This also requires changing the
basic_sanity_check
test to check against the horizontal and vertical resolution defined in the config file, not against a hard-coded value of240
.Thank you!!!! 😊