12 lines
382 B
CMake
12 lines
382 B
CMake
idf_component_register(SRCS "main.c"
|
|
INCLUDE_DIRS "." ${LV_DEMO_DIR}
|
|
REQUIRES esp_wifi nvs_flash mqtt)
|
|
|
|
lvgl_port_create_c_image("images/esp_logo.png" "images/" "ARGB8888" "NONE")
|
|
lvgl_port_add_images(${COMPONENT_LIB} "images/")
|
|
|
|
set_source_files_properties(
|
|
PROPERTIES COMPILE_OPTIONS
|
|
"-DLV_LVGL_H_INCLUDE_SIMPLE;-Wno-format;"
|
|
)
|