22 lines
573 B
CMake
22 lines
573 B
CMake
#
|
|
# Copyright (c) 2023 Codecoup
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# CMakeLists.txt file for creating of uut library.
|
|
#
|
|
|
|
add_library(uut STATIC
|
|
${ZEPHYR_BASE}/subsys/bluetooth/audio/audio.c
|
|
${ZEPHYR_BASE}/subsys/bluetooth/audio/codec.c
|
|
${ZEPHYR_BASE}/subsys/bluetooth/common/bt_str.c
|
|
${ZEPHYR_BASE}/subsys/logging/log_minimal.c
|
|
${ZEPHYR_BASE}/subsys/net/buf_simple.c
|
|
)
|
|
|
|
add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/audio/mocks mocks)
|
|
|
|
target_link_libraries(uut PUBLIC test_interface mocks)
|
|
|
|
target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|