fix(cmake): fix LV_CONF_PATH quoting consistency issue (#8079)

This commit is contained in:
Liam Howatt
2025-04-15 17:14:50 +08:00
committed by GitHub
parent c893c617b6
commit e150297232
+1 -1
View File
@@ -109,7 +109,7 @@ include(${CMAKE_CURRENT_BINARY_DIR}/lv_conf.cmake)
# Add definition of LV_CONF_PATH only if needed
# Do not redefine it if already defined in tests/CMakeLists.txt
if(LV_CONF_PATH AND NOT LV_BUILD_TEST)
target_compile_definitions(lvgl PUBLIC LV_CONF_PATH=${LV_CONF_PATH})
target_compile_definitions(lvgl PUBLIC LV_CONF_PATH="${LV_CONF_PATH}")
endif()
# Add definition of LV_CONF_SKIP only if needed