11 lines
248 B
CMake
11 lines
248 B
CMake
|
# Copyright (c) 2019 Brett Witherspoon
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
cmake_minimum_required(VERSION 3.13.1)
|
||
|
|
||
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
||
|
project(adxl362)
|
||
|
|
||
|
target_sources(app PRIVATE src/main.c)
|