2018-08-17 15:31:42 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Analog Devices Inc.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.8.2)
|
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
2018-10-25 22:54:09 +08:00
|
|
|
project(adxl372)
|
2018-08-17 15:31:42 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|