2f189e39a5
Move icmsg_buf to lib/os and rename to spsc_pbuf (Single Producer Single Consumer Packet Buffer). It is a generic module and initially was created as internal module for ipc service. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
9 lines
229 B
CMake
9 lines
229 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(spsc_pbuf)
|
|
|
|
FILE(GLOB app_sources src/main.c)
|
|
target_sources(app PRIVATE ${app_sources})
|