1# Copyright 2024 NXP 2# 3# SPDX-License-Identifier: Apache-2.0 4# 5 6cmake_minimum_required(VERSION 3.20.0) 7 8find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 9 10if(("${BOARD}" STREQUAL "mimxrt1170_evkb_cm4") OR 11 ("${BOARD}" STREQUAL "mimxrt1170_evk_cm4") OR 12 ("${BOARD}" STREQUAL "mimxrt1160_evk_cm4") OR 13 ("${BOARD}" STREQUAL "lpcxpresso55s69_cpu1")) 14 message(STATUS "${BOARD} compile as remote in this sample") 15else() 16 message(FATAL_ERROR "${BOARD} is not supported for this sample") 17endif() 18 19project(mbox_data_ipc_remote) 20 21target_sources(app PRIVATE src/main.c) 22