1#
2# CMakeLists.txt file for creating of host mocks library.
3#
4
5add_library(host_mocks STATIC
6            host_mocks/assert.c
7)
8
9target_include_directories(host_mocks PUBLIC
10  ${ZEPHYR_BASE}/subsys/bluetooth
11  ${ZEPHYR_BASE}/subsys/bluetooth/host
12  ${ZEPHYR_BASE}/tests/bluetooth/host
13)
14
15target_link_libraries(host_mocks PRIVATE test_interface)
16target_compile_options(test_interface INTERFACE -include ztest.h)
17