Skip to content

Commit d6f8f8b

Browse files
piotrkoziarrlubos
authored andcommitted
cmake: add nrfxlib_calculate_lib_path case for nrf54l10 & nrf54l05
Adds case in nrfxlib_calculate_lib_path for nrf54l10 and nrf54l05. Both secure and non-secure variants lib paths will be calculated. Signed-off-by: Piotr Koziar <[email protected]>
1 parent 589294e commit d6f8f8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ function(nrfxlib_calculate_lib_path lib_path)
4848
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
4949
elseif(DEFINED CONFIG_SOC_NRF5340_CPUNET)
5050
set(arch_soc_dir ${arch_soc_dir}_cpunet)
51-
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
51+
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP
52+
OR DEFINED CONFIG_SOC_NRF54L10_CPUAPP OR DEFINED CONFIG_SOC_NRF54L05_CPUAPP)
5253
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
5354
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
5455
set(arch_soc_dir ${arch_soc_dir}_ns)

0 commit comments

Comments
 (0)