From 772d072f8f3d85bf7a10da22f3d230449948a9fb Mon Sep 17 00:00:00 2001 From: Daniel Jasinski Date: Sun, 26 Jan 2025 19:57:22 +0100 Subject: [PATCH] build: CMake fix for sim:btuart bt_bridge.c file was missing in nuttx/drivers/wireless/bluetooth. Signed-off-by: Daniel Jasinski --- drivers/wireless/bluetooth/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/wireless/bluetooth/CMakeLists.txt b/drivers/wireless/bluetooth/CMakeLists.txt index 2aa6d9e141011..84a8c33b80bd6 100644 --- a/drivers/wireless/bluetooth/CMakeLists.txt +++ b/drivers/wireless/bluetooth/CMakeLists.txt @@ -54,5 +54,9 @@ if(CONFIG_DRIVERS_BLUETOOTH) list(APPEND SRCS bt_rpmsghci.c) endif() + if(CONFIG_BLUETOOTH_BRIDGE) + list(APPEND SRCS bt_bridge.c) + endif() + target_sources(drivers PRIVATE ${SRCS}) endif()