1# Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or
2# an affiliate of Cypress Semiconductor Corporation
3# SPDX-License-Identifier: Apache-2.0
4
5zephyr_include_directories(./)
6
7zephyr_library_sources_ifdef(CONFIG_WIFI_AIROC
8  airoc_wifi.c
9  airoc_whd_hal_common.c
10)
11zephyr_library_sources_ifdef(CONFIG_AIROC_WIFI_BUS_SDIO airoc_whd_hal_sdio.c)
12zephyr_library_sources_ifdef(CONFIG_AIROC_WIFI_BUS_SPI airoc_whd_hal_spi.c)
13
14zephyr_compile_definitions(CYBSP_WIFI_CAPABLE)
15zephyr_compile_definitions(CY_RTOS_AWARE)
16zephyr_compile_definitions(WHD_USE_CUSTOM_MALLOC_IMPL)
17zephyr_compile_definitions(WHD_USE_CUSTOM_HAL_IMPL)
18