feat(cmake) build a static liblvgl.a library by default (#2079)

This commit is contained in:
Alex Kalmuk
2021-02-18 15:41:54 +03:00
committed by GitHub
parent faf45419ca
commit 0bdcf362ff

View File

@@ -60,5 +60,8 @@ zephyr_library_sources(${SOURCES})
endif() # CONFIG_LVGL
else()
message(FATAL_ERROR "Unknown platform.")
file(GLOB_RECURSE SOURCES src/*.c)
add_library(lvgl STATIC ${SOURCES})
endif()