From 1a5d3b4a4ff98a33222856526afdf9c089b96d2b Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 28 Jun 2024 07:03:50 +0100 Subject: [PATCH] [nrf noup] scripts: west_commands: build: Add ant to sysbuild list nrf-squash! [nrf noup] scripts: west: build: Use sysbuild by default if in NCS dir Adds the ANT project to the list of repos that should be built using sysbuild by default Signed-off-by: Jamie McCrae --- scripts/west_commands/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/west_commands/build.py b/scripts/west_commands/build.py index 30f1164e557..0bff7cbb0fb 100644 --- a/scripts/west_commands/build.py +++ b/scripts/west_commands/build.py @@ -586,7 +586,7 @@ def _run_cmake(self, board, origin, cmake_opts): # Check if this is an ncs-repo directory allow_list = [ 'mcuboot', 'sidewalk', 'find-my', 'nrf', 'matter', 'suit-processor', 'memfault-firmware-sdk', 'zscilib', 'uoscore-uedhoc', 'zcbor', - 'hal_nordic', 'ncs-example-application' ] + 'hal_nordic', 'ncs-example-application', 'ant' ] config_sysbuild = False for module in zephyr_module.parse_modules(ZEPHYR_BASE, self.manifest):