zephyr/samples/bluetooth/bap_broadcast_source/CMakeLists.txt
Emil Gydesen 645267288c samples: Bluetooth: BAP: Broadcast source use next USB stack
Modify the BAP Broadcast source sample to use the next USB stack.
For simplicity, the changes are minimum and will still do the
same downsampling, and thus use a fixed 48KHz audio input.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2025-01-30 14:07:37 +01:00

14 lines
309 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(bap_unicast_server)
target_sources(app PRIVATE
src/main.c
)
if (CONFIG_USE_USB_AUDIO_INPUT)
include(${ZEPHYR_BASE}/samples/subsys/usb/common/common.cmake)
endif()