Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: CMake fix for sim:btuart
Browse files Browse the repository at this point in the history
bt_bridge.c file was missing in nuttx/drivers/wireless/bluetooth.

Signed-off-by: Daniel Jasinski <jasinskidaniel95szcz@gmail.com>
Jasinsky committed Jan 26, 2025
1 parent e2a51ee commit 772d072
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/wireless/bluetooth/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit 772d072

Please sign in to comment.