Adds support for sysbuild loading snippets, these can be included by using e.g.: cmake ... -DSB_SNIPPET=blah for sysbuild directly or can be used with an application and sysbuild using -DSNIPPET. Snippets for sysbuild can use SB_EXTRA_CONF_FILE in the snippet file to specify an extra Kconfig fragment for sysbuild Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
22 lines
476 B
CMake
22 lines
476 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(yaml)
|
|
include(sysbuild_root)
|
|
include(zephyr_module)
|
|
include(boards)
|
|
include(shields)
|
|
include(hwm_v2)
|
|
include(sysbuild_snippets)
|
|
include(sysbuild_kconfig)
|
|
include(native_simulator_sb_extensions)
|
|
include(sysbuild_images)
|