Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
1.4 KiB

#
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
# Copyright 2023-2025 NXP
# Copyright 2025 Ezurio LLC
#
# 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_CPUNET OR
CONFIG_BOARD_NRF5340BSIM_NRF5340_CPUNET OR
CONFIG_BOARD_ADP_XC7K_AE350 OR
CONFIG_BOARD_MIMXRT1170_EVK_MIMXRT1176_CM4 OR
CONFIG_BOARD_MIMXRT1160_EVK_MIMXRT1166_CM4 OR
CONFIG_BOARD_MIMXRT1180_EVK_MIMXRT1189_CM7 OR
CONFIG_BOARD_LPCXPRESSO55S69_LPC55S69_CPU1 OR
CONFIG_BOARD_FRDM_MCXN947_MCXN947_CPU1 OR
CONFIG_BOARD_MCX_N9XX_EVK_MCXN947_CPU1 OR
CONFIG_BOARD_ESP32_DEVKITC_ESP32_APPCPU OR
CONFIG_BOARD_ESP32S3_DEVKITM_ESP32S3_APPCPU OR
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUPPR OR
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUFLPR OR
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUAPP OR
CONFIG_BOARD_NRF54L09PDK_NRF54L09_CPUFLPR OR
CONFIG_BOARD_NRF54L15DK_NRF54L15_CPUFLPR OR
CONFIG_BOARD_NRF54L20PDK_NRF54L20_CPUFLPR OR
CONFIG_BOARD_NRF54LM20DK_NRF54LM20A_CPUFLPR OR
CONFIG_BOARD_STM32H747I_DISCO_STM32H747XX_M4 OR
CONFIG_BOARD_BL54L15_DVK_NRF54L15_CPUFLPR OR
CONFIG_BOARD_BL54L15U_DVK_NRF54L15_CPUFLPR)
message(STATUS "${BOARD}${BOARD_QUALIFIERS} compile as remote in this sample")
else()
message(FATAL_ERROR "${BOARD}${BOARD_QUALIFIERS} is not supported for this sample")
endif()
project(mbox_ipc_remote)
target_sources(app PRIVATE src/main.c)