mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
12 lines
542 B
CMake
12 lines
542 B
CMake
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"
|
|
# lwip is a public requirement because esp_http_client.h includes sys/socket.h
|
|
REQUIRES lwip
|
|
PRIV_REQUIRES tcp_transport http_parser)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|