1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4
5find_package(Zephyr COMPONENTS unittest HINTS $ENV{ZEPHYR_BASE})
6
7project(buf_simple)
8
9add_subdirectory(${ZEPHYR_BASE}/tests/net/mocks net_mocks)
10
11target_link_libraries(testbinary PRIVATE net_mocks)
12
13target_sources(testbinary
14    PRIVATE
15    src/main.c
16
17    ${ZEPHYR_BASE}/lib/net_buf/buf_simple.c
18)
19