# Search for all source files in the current directory
# and save the names to the DIR_LCD_SRCS variable
aux_source_directory(. DIR_LCD_SRCS)

include_directories(../Config)
include_directories(../QSPI_PIO)

# Adds a library target 
add_library(LCD ${DIR_LCD_SRCS})
target_link_libraries(LCD PUBLIC QSPI_PIO Config pico_stdlib hardware_gpio)