17 lines
660 B
CMake
17 lines
660 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
zephyr_library_property(ALLOW_EMPTY TRUE)
|
|
|
|
add_subdirectory_ifdef(CONFIG_WIFI_ESP_AT esp_at)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_ESP32 esp32)
|
|
if(CONFIG_DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED)
|
|
zephyr_blobs_verify(MODULE hal_espressif REQUIRED)
|
|
endif()
|
|
add_subdirectory_ifdef(CONFIG_WIFI_ESWIFI eswifi)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_SIMPLELINK simplelink)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_WINC1500 winc1500)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_NXP nxp)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_AIROC infineon)
|
|
add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrfwifi)
|