Files
esp-protocols/esp_wifi_remote/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
451 B
CMake
Raw Normal View History

if(NOT CONFIG_ESP_WIFI_ENABLED)
set(src_wifi_is_remote esp_wifi_remote.c)
endif()
idf_component_register(INCLUDE_DIRS include
SRCS wifi_remote_rpc.c wifi_remote_net.c wifi_remote_init.c ${src_wifi_is_remote}
${INTERNAL_SRCS}
REQUIRES esp_event esp_netif
PRIV_INCLUDE_DIRS ${INTERNAL_INCLUDE_DIRS}
PRIV_REQUIRES esp_wifi esp_hosted_preview)