1# SPDX-License-Identifier: Apache-2.0
2
3add_library(mocks STATIC
4            conn.c
5            hci_core.c
6            net_buf.c
7)
8
9target_include_directories(mocks PUBLIC
10  ..
11  ${ZEPHYR_BASE}/subsys/bluetooth
12  ${ZEPHYR_BASE}/subsys/bluetooth/host
13  ${ZEPHYR_BASE}/tests/bluetooth/host
14  ${ZEPHYR_BASE}/tests/bluetooth/host/cs/mocks
15)
16
17target_link_libraries(mocks PRIVATE test_interface)
18