mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 04:32:41 +00:00
Split meaning of BT_CTLR and BT_LL_SW, since they always are the same. This way BT_CTLR means that there an controller implemented, and BT_LL_SW refers to the specific implementation. This allows alternative controller implementations. Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
16 lines
403 B
CMake
16 lines
403 B
CMake
add_library(subsys__bluetooth INTERFACE)
|
|
|
|
target_include_directories(subsys__bluetooth INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory_ifdef(CONFIG_BT_HCI host)
|
|
add_subdirectory_ifdef(CONFIG_BT_SHELL shell)
|
|
|
|
if(CONFIG_BT_CTLR)
|
|
if(CONFIG_BT_LL_SW)
|
|
add_subdirectory(controller)
|
|
endif()
|
|
endif()
|
|
|
|
target_link_libraries(subsys__bluetooth INTERFACE zephyr_interface)
|