Merge pull request #523 from bryghtlabs-richard/master

fix(websocket): fix esp_event dependency management (IDFGH-12301) (IDFGH-12302)
This commit is contained in:
david-cermak
2024-03-20 19:09:29 +01:00
committed by GitHub

View File

@ -16,6 +16,6 @@ if(${IDF_TARGET} STREQUAL "linux")
else()
idf_component_register(SRCS "esp_websocket_client.c"
INCLUDE_DIRS "include"
REQUIRES lwip esp-tls tcp_transport http_parser
PRIV_REQUIRES esp_timer esp_event)
REQUIRES lwip esp-tls tcp_transport http_parser esp_event
PRIV_REQUIRES esp_timer)
endif()