2023-09-26 07:43:43 +02:00
|
|
|
if(NOT CONFIG_ESP_WIFI_ENABLED)
|
2024-03-04 20:26:02 +01:00
|
|
|
set(src_wifi_is_remote esp_wifi_remote.c esp_wifi_with_remote.c)
|
2023-09-26 07:43:43 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(INCLUDE_DIRS include
|
2024-03-04 20:26:02 +01:00
|
|
|
SRCS ${src_wifi_is_remote}
|
|
|
|
esp_wifi_remote_net.c
|
|
|
|
esp_wifi_remote_weak.c
|
2023-09-26 07:43:43 +02:00
|
|
|
REQUIRES esp_event esp_netif
|
2024-03-04 20:26:02 +01:00
|
|
|
PRIV_REQUIRES esp_wifi)
|
|
|
|
|
|
|
|
idf_component_optional_requires(PRIVATE esp_hosted)
|
|
|
|
|
|
|
|
idf_component_get_property(wifi esp_wifi COMPONENT_LIB)
|
|
|
|
target_link_libraries(${wifi} PUBLIC ${COMPONENT_LIB})
|