1# SPDX-License-Identifier: Apache-2.0
2
3if(CONFIG_WIFI_SIMPLELINK)
4  zephyr_library_include_directories(
5    ${ZEPHYR_BASE}/subsys/net/lib/tls_credentials
6    ${ZEPHYR_BASE}/subsys/net/lib/sockets
7    )
8  zephyr_library_sources(
9    simplelink_support.c
10    simplelink.c
11    )
12endif()
13zephyr_library_sources_ifdef(CONFIG_NET_SOCKETS_OFFLOAD simplelink_sockets.c)
14