1#
2# Copyright (c) 2023 Nordic Semiconductor ASA
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6# CMakeLists.txt file for creating of uut library.
7#
8
9add_library(uut STATIC
10  ${ZEPHYR_BASE}/subsys/bluetooth/audio/audio.c
11  ${ZEPHYR_BASE}/subsys/bluetooth/audio/bap_iso.c
12  ${ZEPHYR_BASE}/subsys/bluetooth/audio/bap_stream.c
13  ${ZEPHYR_BASE}/subsys/bluetooth/audio/bap_broadcast_source.c
14  ${ZEPHYR_BASE}/subsys/bluetooth/audio/codec.c
15  ${ZEPHYR_BASE}/subsys/logging/log_minimal.c
16  ${ZEPHYR_BASE}/lib/net_buf/buf_simple.c
17  bap_broadcast_source.c
18)
19
20add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/audio/mocks mocks)
21
22target_link_libraries(uut PUBLIC test_interface mocks)
23
24target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
25