1# Copyright (c) 2023 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4if("${SB_CONFIG_NET_CORE_BOARD}" STREQUAL "")
5	message(FATAL_ERROR
6	"Target ${BOARD} not supported for this sample. "
7	"There is no remote board selected in Kconfig.sysbuild")
8endif()
9
10ExternalZephyrProject_Add(
11	APPLICATION remote
12	SOURCE_DIR  ${APP_DIR}/remote
13	BOARD       ${SB_CONFIG_NET_CORE_BOARD}
14)
15