mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
e6de537952
* Add component.mk file for esp-idf make commands * component.mk: Check for IDF_VER Checks for IDF_VER when adding COMPONENT_SRCDIRS and COMPONENT_ADD_INCLUDEDIRS to avoid definig them when not using LVGL as ESP-IDF component. * component.mk: Remove info messages
9 lines
129 B
Makefile
9 lines
129 B
Makefile
# ESP-IDF component file for make based commands
|
|
|
|
ifdef $(IDF_VER)
|
|
|
|
COMPONENT_SRCDIRS := .
|
|
COMPONENT_ADD_INCLUDEDIRS := .
|
|
|
|
endif
|