From dab54eb36cce527a4a61cdf1d3bce4ae0fc6b13c Mon Sep 17 00:00:00 2001 From: Rafal Dyla Date: Wed, 1 Oct 2025 09:22:36 +0200 Subject: [PATCH] modules: hal_nordic: nrfx: Paths aligning to the NRFX 4.0 Paths aligning to the NRFX 4.0 Signed-off-by: Rafal Dyla --- modules/hal_nordic/nrfx/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/hal_nordic/nrfx/CMakeLists.txt b/modules/hal_nordic/nrfx/CMakeLists.txt index e944f06c805..078c6bb6ead 100644 --- a/modules/hal_nordic/nrfx/CMakeLists.txt +++ b/modules/hal_nordic/nrfx/CMakeLists.txt @@ -13,11 +13,15 @@ endif() set(INC_DIR ${NRFX_DIR}/drivers/include) set(SRC_DIR ${NRFX_DIR}/drivers/src) -set(MDK_DIR ${NRFX_DIR}/mdk) +set(BSP_DIR ${NRFX_DIR}/bsp) +set(BSP_STABLE_DIR ${BSP_DIR}/stable) +set(MDK_DIR ${BSP_STABLE_DIR}/mdk) set(HELPERS_DIR ${NRFX_DIR}/helpers) zephyr_include_directories(${NRFX_DIR}) zephyr_include_directories(${INC_DIR}) +zephyr_include_directories(${BSP_DIR}) +zephyr_include_directories(${BSP_STABLE_DIR}) zephyr_include_directories(${MDK_DIR}) zephyr_include_directories(.)