zephyr/subsys/bluetooth/audio/shell/CMakeLists.txt
Emil Gydesen 9688c2d43f Bluetooth: CCP: Initial CCP Client implemenation
Added initial CCP client implementation that simply
does discovery of TBS on a remote CCP server.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2025-01-28 09:46:39 +01:00

107 lines
2.1 KiB
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_link_libraries(subsys__bluetooth)
zephyr_library_sources_ifdef(
CONFIG_BT_CCP_CALL_CONTROL_SERVER
ccp_call_control_server.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CCP_CALL_CONTROL_CLIENT
ccp_call_control_client.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_VCP_VOL_REND
vcp_vol_rend.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_VCP_VOL_CTLR
vcp_vol_ctlr.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_MICP_MIC_DEV
micp_mic_dev.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_MICP_MIC_CTLR
micp_mic_ctlr.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CSIP_SET_MEMBER
csip_set_member.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CSIP_SET_COORDINATOR
csip_set_coordinator.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_TBS
tbs.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_TBS_CLIENT
tbs_client.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_MPL
mpl.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_MCC
mcc.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_MCS
media_controller.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_HAS_PRESET_SUPPORT
has.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CAP_ACCEPTOR
cap_acceptor.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CAP_INITIATOR
cap_initiator.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_CAP_COMMANDER
cap_commander.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_HAS_CLIENT
has_client.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_TMAP
tmap.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_GMAP
gmap.c
)
# We use BT_BAP_STREAM as a common ground for audio, as that is set whenever
# any audio stream functionality is enabled.
zephyr_library_sources_ifdef(
CONFIG_BT_BAP_STREAM
bap.c
)
if (CONFIG_LIBLC3 AND CONFIG_USB_DEVICE_AUDIO)
zephyr_library_sources(bap_usb.c)
endif()
zephyr_library_sources_ifdef(
CONFIG_BT_BAP_SCAN_DELEGATOR
bap_scan_delegator.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_BAP_BROADCAST_ASSISTANT
bap_broadcast_assistant.c
)
zephyr_library_sources_ifdef(
CONFIG_BT_PBP
pbp.c
)