zephyr/drivers/wifi/eswifi/CMakeLists.txt
Loic Poulain e7c4d29c86 drivers: wifi: eswifi: Add debug shell
Add a esWiFi shell for device specific controls.
For now used to send at commands.

Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
2020-07-30 16:35:58 +03:00

22 lines
436 B
CMake

# SPDX-License-Identifier: Apache-2.0
if(CONFIG_WIFI_ESWIFI)
zephyr_include_directories(./)
zephyr_library_include_directories(
# IP headers
${ZEPHYR_BASE}/subsys/net/ip
)
zephyr_sources(
eswifi_core.c
eswifi_bus_spi.c
eswifi_offload.c
eswifi_socket.c
)
zephyr_sources_ifdef(CONFIG_WIFI_ESWIFI_SHELL eswifi_shell.c)
zephyr_sources_ifdef(CONFIG_NET_SOCKETS_OFFLOAD eswifi_socket_offload.c)
endif()