2021-01-25 13:03:12 +01:00
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Bosch Sensortec GmbH
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2021-08-10 14:44:56 +02:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2023-03-01 13:56:02 +01:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2021-01-25 13:03:12 +01:00
|
|
|
project(NONE)
|
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|