Commit a9b4cae0 authored by Joakim Andersson's avatar Joakim Andersson Committed by Kumar Gala
Browse files

Bluetooth: audio: Fix compilation issue with BT_AUDIO



Fix bluetooth audio compilation issue when BT_AUDIO is enabled but
no Bluetooth host services has been enabled.
This leads to an empty library file.
Instead of creating a new library for audio add the sources to the
parent library, similar to how bluetooth services are added.

Signed-off-by: default avatarJoakim Andersson <joakim.andersson@nordicsemi.no>
parent e1b840c4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

zephyr_library()
zephyr_library_link_libraries(subsys__bluetooth)

if (CONFIG_BT_VOCS OR CONFIG_BT_VOCS_CLIENT)
	zephyr_library_sources(vocs.c)
endif()