zephyr/tests/subsys/ipc/pbuf/CMakeLists.txt
Emil Obalski 25a0489d62 tests: ipc: Add pbuf unit tests
Add unit tests for packed buffer.

Signed-off-by: Emil Obalski <Emil.Obalski@nordicsemi.no>
2023-11-09 10:18:37 +00:00

9 lines
228 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(ipc_pbuf)
FILE(GLOB app_sources src/main.c)
target_sources(app PRIVATE ${app_sources})