Skip to content

Commit

Permalink
Merge pull request #600 from loganfin/master
Browse files Browse the repository at this point in the history
Add esp_lcd dependency to build system
  • Loading branch information
mrcodetastic authored Mar 6, 2024
2 parents c340c9a + 2f55adb commit da0672f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ endif()

if(${target} STREQUAL "esp32s3")
list(APPEND extra_srcs src/platforms/${target}/gdma_lcd_parallel16.cpp)

# Required by gdma_lcd_parallel16.cpp
if (NOT esp_lcd IN_LIST build_dependencies)
list(APPEND build_dependencies esp_lcd)
endif()
endif()

idf_component_register(SRCS "src/platforms/esp32/esp32_i2s_parallel_dma.cpp" "src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp" "src/ESP32-HUB75-MatrixPanel-leddrivers.cpp" ${extra_srcs}
Expand Down

0 comments on commit da0672f

Please sign in to comment.