1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4
5find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6project(bsim_test_audio)
7
8FILE(GLOB app_sources src/*.c)
9target_sources(app PRIVATE ${app_sources} )
10
11zephyr_include_directories(
12  ${BSIM_COMPONENTS_PATH}/libUtilv1/src/
13  ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/
14  ${ZEPHYR_BASE}/subsys/bluetooth/host/audio/
15)
16