2019-04-06 09:08:09 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-11-30 10:17:22 +01:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2020-05-28 21:02:17 -07:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2018-11-30 10:17:22 +01:00
|
|
|
project(counter)
|
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|