1add_library(subsys__bluetooth INTERFACE)
2
3target_include_directories(subsys__bluetooth INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
4
5add_subdirectory(common)
6add_subdirectory_ifdef(CONFIG_BT_HCI host)
7add_subdirectory_ifdef(CONFIG_BT_SHELL shell)
8
9if(CONFIG_BT_CTLR)
10  if(CONFIG_BT_LL_SW)
11    add_subdirectory(controller)
12  endif()
13endif()
14
15target_link_libraries(subsys__bluetooth INTERFACE zephyr_interface)
16