diff --git a/Kconfig b/Kconfig index a69c1672e..3599a70d6 100644 --- a/Kconfig +++ b/Kconfig @@ -871,7 +871,7 @@ menu "LVGL configuration" config LV_TXT_BREAK_CHARS string "Can break (wrap) texts on these chars" - default " ,.;:-_)]}" + default " ,.;:-_)}" config LV_TXT_LINE_BREAK_LONG_LEN int "Line break long length" diff --git a/env_support/cmake/zephyr.cmake b/env_support/cmake/zephyr.cmake index f9ae517e7..7ab4654fb 100644 --- a/env_support/cmake/zephyr.cmake +++ b/env_support/cmake/zephyr.cmake @@ -4,7 +4,7 @@ if(CONFIG_LVGL) target_include_directories(lvgl INTERFACE ${LVGL_ROOT_DIR}) - zephyr_compile_definitions(LV_CONF_KCONFIG_EXTERNAL_INCLUDE=) + zephyr_compile_definitions(LV_CONF_KCONFIG_EXTERNAL_INCLUDE=) zephyr_library() diff --git a/env_support/zephyr/module.yml b/env_support/zephyr/module.yml deleted file mode 100644 index eb317c3ce..000000000 --- a/env_support/zephyr/module.yml +++ /dev/null @@ -1,2 +0,0 @@ -build: - cmake: . diff --git a/zephyr/Kconfig b/zephyr/Kconfig new file mode 100644 index 000000000..53fcdbb8d --- /dev/null +++ b/zephyr/Kconfig @@ -0,0 +1,3 @@ +if LVGL +rsource "../Kconfig" +endif diff --git a/zephyr/module.yml b/zephyr/module.yml new file mode 100644 index 000000000..e63b25b7b --- /dev/null +++ b/zephyr/module.yml @@ -0,0 +1,5 @@ +# https://docs.zephyrproject.org/latest/guides/modules.html +name: lvgl +build: + cmake-ext: True + kconfig: zephyr/Kconfig