hal: nxp: Check Kconfig before including HAL

hal_nxp was added to cmake's include directories globally, without
checking if the hal is enabled. This made all Zephyr builds end up
including hal_nxp, even for other vendors.

Signed-off-by: Yonatan Schachter <yonatan.schachter@gmail.com>
This commit is contained in:
Yonatan Schachter 2022-11-01 18:30:45 +02:00 committed by David Leach
parent 836f582664
commit 3a3cfbb652

View file

@ -4,7 +4,9 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# #
add_subdirectory(${ZEPHYR_CURRENT_MODULE_DIR} hal_nxp) if(CONFIG_HAS_MCUX OR CONFIG_HAS_IMX_HAL OR CONFIG_HAS_S32_HAL)
add_subdirectory_ifdef(CONFIG_USB_DEVICE_DRIVER usb) add_subdirectory(${ZEPHYR_CURRENT_MODULE_DIR} hal_nxp)
add_subdirectory_ifdef(CONFIG_USB_DEVICE_DRIVER usb)
zephyr_include_directories(.) zephyr_include_directories(.)
endif()