2022-11-08 14:14:09 +05:30
|
|
|
if(NOT ${IDF_TARGET} STREQUAL "linux")
|
2022-11-16 17:31:07 +05:30
|
|
|
set(req lwip esp_event)
|
|
|
|
else()
|
2023-04-03 20:31:51 +02:00
|
|
|
set(req linux esp_event)
|
2022-11-08 14:14:09 +05:30
|
|
|
endif()
|
|
|
|
|
2019-04-28 15:38:23 +08:00
|
|
|
idf_component_register(SRCS "esp_http_client.c"
|
|
|
|
"lib/http_auth.c"
|
|
|
|
"lib/http_header.c"
|
|
|
|
"lib/http_utils.c"
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
PRIV_INCLUDE_DIRS "lib/include"
|
2022-04-14 20:03:56 +02:00
|
|
|
# lwip is a public requirement because esp_http_client.h includes sys/socket.h
|
2022-11-08 14:14:09 +05:30
|
|
|
REQUIRES ${req}
|
2022-05-11 16:01:48 +02:00
|
|
|
PRIV_REQUIRES tcp_transport http_parser)
|