1# 2# Copyright (c) 2023 Codecoup 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/codec.c 12 ${ZEPHYR_BASE}/subsys/bluetooth/common/bt_str.c 13 ${ZEPHYR_BASE}/subsys/logging/log_minimal.c 14 ${ZEPHYR_BASE}/subsys/net/buf_simple.c 15) 16 17add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/audio/mocks mocks) 18 19target_link_libraries(uut PUBLIC test_interface mocks) 20 21target_compile_options(uut PRIVATE -std=c11 -include ztest.h) 22