Remove minnowboard configuration which is very basic and can be brought back by just taking another X86 configuration. We have not tested this board for a while and it is not being used actively, so remove it. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
9 lines
227 B
CMake
9 lines
227 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(app_kernel)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|