This commit refactors sysbuild entry code by creating a CMake sysbuild module for image processing and place sysbuild entry code in a <app>/sysbuild/CMakeLists.txt file. A template/CMakeLists.txt file will be use as template for applications which doesn't provide their own entry file. An application may create a sysbuild/CMakeLists.txt file. The sysbuild/CMakeLists.txt file is similar in nature to the toplevel CMakeLists.txt file but intended to used by sysbuild. This allows application developers to adjust how an application is built with sysbuild. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
19 lines
426 B
CMake
19 lines
426 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(root)
|
|
include(zephyr_module)
|
|
include(boards)
|
|
include(shields)
|
|
include(hwm_v2)
|
|
include(sysbuild_kconfig)
|
|
include(native_simulator_sb_extensions)
|
|
include(sysbuild_images)
|