mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-19 05:22:21 +02:00
14 lines
479 B
CMake
14 lines
479 B
CMake
set(ppp_connect_srcs ppp_connect.c)
|
|
if(CONFIG_EXAMPLE_PPP_CONNECT_ESP_MODEM)
|
|
list(APPEND ppp_connect_srcs ppp_connect_esp_modem.c)
|
|
else()
|
|
list(APPEND ppp_connect_srcs ppp_connect_simple.c)
|
|
endif()
|
|
|
|
idf_component_register(SRCS multi_netif_main.c
|
|
check_connection.c
|
|
wifi_connect.c
|
|
ethernet_connect.c
|
|
${ppp_connect_srcs}
|
|
INCLUDE_DIRS ".")
|