# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.13.1)

# add custom board
list(APPEND BOARD_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
set(BOARD my_thingy91ns)

find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(thingy91_motiondetection)

target_sources(app PRIVATE src/main.c)
target_sources(app PRIVATE src/adxl362.c)
target_sources(app PRIVATE src/thingy91_bsp.c)
target_sources(app PRIVATE src/motiondetection.c)
