From de09007c037b19a21fedd8282466211110f8d055 Mon Sep 17 00:00:00 2001 From: Mattia Maldini Date: Mon, 4 Mar 2024 04:28:29 +0100 Subject: [PATCH] fix(env): added *.cpp glob in ESP configuration (#5761) --- env_support/cmake/esp.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env_support/cmake/esp.cmake b/env_support/cmake/esp.cmake index edc370991..19762c043 100644 --- a/env_support/cmake/esp.cmake +++ b/env_support/cmake/esp.cmake @@ -1,4 +1,4 @@ -file(GLOB_RECURSE SOURCES ${LVGL_ROOT_DIR}/src/*.c) +file(GLOB_RECURSE SOURCES ${LVGL_ROOT_DIR}/src/*.c ${LVGL_ROOT_DIR}/src/*.cpp) idf_build_get_property(LV_MICROPYTHON LV_MICROPYTHON)