Replace with 'if(' and 'else(' per the cmake style guidelines.
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
13 lines
376 B
CMake
13 lines
376 B
CMake
# Copyright (c) 2025 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_BOARD_RZV2H_EVK_R9A09G057H44GBG_CM33)
|
|
board_runner_args(jlink "--device=R9A09G057H44_M33_0")
|
|
endif()
|
|
|
|
if(CONFIG_BOARD_RZV2H_EVK_R9A09G057H44GBG_CR8_0)
|
|
board_runner_args(jlink "--device=R9A09G057H44_R8_0")
|
|
endif()
|
|
|
|
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|