Skip to content

Commit

Permalink
fix(cmake): installation with custom LV_CONF_PATH (lvgl#7624)
Browse files Browse the repository at this point in the history
  • Loading branch information
etag4048 authored Jan 28, 2025
1 parent 7d088e2 commit 4e61b66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions env_support/cmake/custom.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ file(GLOB LVGL_PUBLIC_HEADERS

if(NOT LV_CONF_SKIP)
if (LV_CONF_PATH)
list(APPEND LVGL_PUBLIC_HEADERS
${LV_CONF_PATH})
string(REPLACE "\"" "" UNQUOTED_LV_CONF_PATH ${LV_CONF_PATH})
list(APPEND LVGL_PUBLIC_HEADERS ${UNQUOTED_LV_CONF_PATH})
else()
list(APPEND LVGL_PUBLIC_HEADERS
"${CMAKE_SOURCE_DIR}/lv_conf.h")
Expand Down

0 comments on commit 4e61b66

Please sign in to comment.