cmake_minimum_required(VERSION 3.20.0) # Top-level CMakeLists.txt for the skeleton application. # # Copyright (c) 2017 Open Source Foundries Limited # # SPDX-License-Identifier: Apache-2.0 # # This provides a basic application structure suitable for communication using # mcumgr. It can be used as a starting point for new applications. # Standard Zephyr application boilerplate. find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tuxpir) FILE(GLOB app_sources src/*.c*) target_sources(app PRIVATE ${app_sources})