1# SPDX-License-Identifier: Apache-2.0 2 3add_library(net_mocks STATIC 4 assert.c 5) 6 7target_include_directories(net_mocks PUBLIC 8 ${ZEPHYR_BASE}/subsys/net 9 ${ZEPHYR_BASE}/tests/net 10) 11 12target_link_libraries(net_mocks PRIVATE test_interface) 13target_compile_options(test_interface INTERFACE -include ztest.h) 14