1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/lvgl/Makefile.dep

25 lines
621 B
Makefile
Raw Normal View History

USEMODULE += lvgl
2020-01-02 16:07:12 +01:00
USEMODULE += lvgl_core
USEMODULE += lvgl_draw
USEMODULE += lvgl_font
USEMODULE += lvgl_hal
USEMODULE += lvgl_misc
USEMODULE += lvgl_themes
2020-05-31 20:47:55 +02:00
USEMODULE += lvgl_widgets
2020-01-02 16:07:12 +01:00
ifneq (,$(filter lvgl_contrib,$(USEMODULE)))
USEMODULE += disp_dev
USEMODULE += core_thread_flags
USEMODULE += xtimer
endif
ifneq (,$(filter lvgl_contrib_touch,$(USEMODULE)))
USEMODULE += touch_dev
endif
2020-01-02 16:07:12 +01:00
# lvgl is not compatible with non 32bit platforms
# Building lv_misc triggers the error:
# "left shift count >= width of type [-Werror=shift-count-overflow]"
FEATURES_BLACKLIST += arch_8bit
FEATURES_BLACKLIST += arch_16bit