zephyr/tests/bluetooth/common/testlib/CMakeLists.txt
Théo Battrel e3cf59bfd3 Tests: Bluetooth: Add MTU exchange procedure in testlib
Add `bt_testlib_att_exchange_mtu` function to simplify the procedure.

Signed-off-by: Théo Battrel <theo.battrel@nordicsemi.no>
2025-01-30 11:15:03 +01:00

31 lines
502 B
CMake

# Copyright (c) 2023 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
add_library(testlib)
target_link_libraries(testlib PUBLIC
kernel
subsys__bluetooth__host
zephyr_interface
)
target_include_directories(testlib PUBLIC
include
)
target_sources(testlib PRIVATE
src/adv.c
src/att.c
src/att_read.c
src/att_write.c
src/conn_ref.c
src/conn_wait.c
src/connect.c
src/disconnect.c
src/scan.c
)
target_sources_ifdef(CONFIG_BT_SMP testlib PRIVATE
src/security.c
)