zephyr/drivers/wifi/eswifi/CMakeLists.txt
Saravanan Sekar 1aa696bc2b wifi: eswifi: Implement TCP/UDP socket offload with TLS
Newly implement socket based communication on eswifi mainly to
achive TLS. Tested with Inventek ISM43362-M3G-L44.

Signed-off-by: Saravanan Sekar <saravanan@linumiz.com>
2019-09-13 16:54:57 +03:00

19 lines
370 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_NET_SOCKETS_OFFLOAD eswifi_socket_offload.c)
endif()