mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
15 lines
508 B
CMake
15 lines
508 B
CMake
|
set(srcs "src/esp_lcd_common.c"
|
||
|
"src/esp_lcd_panel_io.c"
|
||
|
"src/esp_lcd_panel_io_i2c.c"
|
||
|
"src/esp_lcd_panel_io_spi.c"
|
||
|
"src/esp_lcd_panel_io_i80.c"
|
||
|
"src/esp_lcd_panel_ssd1306.c"
|
||
|
"src/esp_lcd_panel_st7789.c"
|
||
|
"src/esp_lcd_panel_ops.c"
|
||
|
"src/esp_lcd_rgb_panel.c")
|
||
|
set(includes "include" "interface")
|
||
|
|
||
|
idf_component_register(SRCS ${srcs}
|
||
|
INCLUDE_DIRS ${includes}
|
||
|
PRIV_INCLUDE_DIRS ${priv_includes})
|