1#
2# Copyright (c) 2024 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/ccid.c
11)
12
13add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/audio/mocks mocks)
14
15target_link_libraries(uut PUBLIC test_interface mocks)
16
17target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
18