This is an automated email from the ASF dual-hosted git repository. archer pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 9e64505f8d build: CMake fix for sim:btuart 9e64505f8d is described below commit 9e64505f8d2dca939b27dd82e1762e974961a118 Author: Daniel Jasinski <jasinskidaniel95s...@gmail.com> AuthorDate: Sun Jan 26 19:57:22 2025 +0100 build: CMake fix for sim:btuart bt_bridge.c file was missing in nuttx/drivers/wireless/bluetooth. Signed-off-by: Daniel Jasinski <jasinskidaniel95s...@gmail.com> --- 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 2aa6d9e141..84a8c33b80 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()