blob: 018abcd6408f31fdd867a57b24202b0c258b51ae [file] [log] [blame]
# Copyright (c) 2021 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
if(CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP OR
CONFIG_BOARD_NRF5340BSIM_NRF5340_CPUAPP)
message(INFO " ${BOARD}${BOARD_QUALIFIERS} used for Application Core")
else()
message(FATAL_ERROR "${BOARD}${BOARD_QUALIFIERS} is not supported for this sample")
endif()
project(sync_rtc)
enable_language(C ASM)
target_sources(app PRIVATE src/main.c)