859be8cb73
Added tests for the bindesc subsystem, testing definition of binary descriptors on several qemu architectures, and using several C standards (c99, c11, etc.). Signed-off-by: Yonatan Schachter <yonatan.schachter@gmail.com>
11 lines
227 B
CMake
11 lines
227 B
CMake
# Copyright 2023 Yonatan Schachter
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(bindesc)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|