2022-03-16 00:14:15 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2022-05-17 21:49:59 +08:00
|
|
|
project(spsc_pbuf)
|
2022-03-16 00:14:15 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/main.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|