1#
2#  Copyright (c) 2020 arithmetics.io
3#
4#  SPDX-License-Identifier: Apache-2.0
5
6cmake_minimum_required(VERSION 3.20.0)
7find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
8project(fdc2x1x)
9
10FILE(GLOB app_sources src/*.c)
11target_sources(app PRIVATE ${app_sources})
12