Fixes: #73066 Introduce sysbuild_root CMake module similar to the Zephyr root CMake module. The sysbuild_root CMake module works similar to existing root module, but with the difference that root paths are adjusted relative to APP_DIR which is the main image, instead of relative to sysbuild. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
20 lines
435 B
CMake
20 lines
435 B
CMake
# Copyright (c) 2024 Nordic Semiconductor
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# Sysbuild default list of CMake modules to include in a regular sysbuild session.
|
|
#
|
|
include(extensions)
|
|
include(sysbuild_extensions)
|
|
include(python)
|
|
include(west)
|
|
include(sysbuild_root)
|
|
include(zephyr_module)
|
|
include(boards)
|
|
include(shields)
|
|
include(hwm_v2)
|
|
include(sysbuild_kconfig)
|
|
include(native_simulator_sb_extensions)
|
|
include(sysbuild_images)
|