drivers/serial/CMakeLists.txt: add missing files

add missing files: uart_bth5.c and uart_ram.c
This commit is contained in:
raiden00pl 2024-08-09 10:56:07 +02:00 committed by Xiang Xiao
parent 1195ec03f7
commit e3bbd0cfd8
1 changed files with 12 additions and 0 deletions

View File

@ -69,4 +69,16 @@ if(CONFIG_16550_PCI_UART)
list(APPEND SRCS uart_pci_16550.c)
endif()
# Bluetooth H:5 UART driver
if(CONFIG_UART_BTH5)
list(APPEND SRCS uart_bth5.c)
endif()
# RAM uart support
if(CONFIG_RAM_UART)
list(APPEND SRCS uart_ram.c)
endif()
target_sources(drivers PRIVATE ${SRCS})