drivers/wireless/bluetooth: Aligned Cmake with Make

Add
- bt slip driver #14224

Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
simbit18
2025-10-09 09:27:37 +02:00
committed by archer
parent 08050f506c
commit ee1b6203c3

View File

@@ -42,6 +42,10 @@ if(CONFIG_DRIVERS_BLUETOOTH)
endif()
endif()
if(CONFIG_BLUETOOTH_BRIDGE)
list(APPEND SRCS bt_bridge.c)
endif()
if(CONFIG_BLUETOOTH_NULL)
list(APPEND SRCS bt_null.c)
endif()
@@ -54,8 +58,8 @@ if(CONFIG_DRIVERS_BLUETOOTH)
list(APPEND SRCS bt_rpmsghci.c)
endif()
if(CONFIG_BLUETOOTH_BRIDGE)
list(APPEND SRCS bt_bridge.c)
if(CONFIG_BLUETOOTH_SLIP)
list(APPEND SRCS bt_slip.c)
endif()
target_sources(drivers PRIVATE ${SRCS})