mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
faa368a612
- Foundation was initialized only for SSL. - Removed base from list. - Changed SSL and TCP initialition. - Clean of state data structures.
15 lines
325 B
CMake
15 lines
325 B
CMake
set(srcs
|
|
"transport.c"
|
|
"transport_ssl.c"
|
|
"transport_internal.c")
|
|
|
|
if(CONFIG_WS_TRANSPORT)
|
|
list(APPEND srcs
|
|
"transport_ws.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "include"
|
|
PRIV_INCLUDE_DIRS "private_include"
|
|
REQUIRES esp-tls)
|