We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f33add0 commit 2bf9996Copy full SHA for 2bf9996
micropython.cmake
@@ -1,6 +1,12 @@
1
2
# This file is to be given as "make USER_C_MODULES=..." when building Micropython port
3
4
+if(ECHO_SUBMODULES)
5
+ string(CONCAT GIT_SUBMODULES "${GIT_SUBMODULES} " ${CMAKE_CURRENT_LIST_DIR}/lvgl ${CMAKE_CURRENT_LIST_DIR}/pycparser)
6
+elseif(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/lvgl/README.md)
7
+ message(FATAL_ERROR " lvgl not initialized.\n Run 'make BOARD=${MICROPY_BOARD} submodules'")
8
+endif()
9
+
10
# Include LVGL component, ignore KCONFIG
11
separate_arguments(LV_CFLAGS_ENV UNIX_COMMAND $ENV{LV_CFLAGS})
12
0 commit comments