10 lines
355 B
Text
10 lines
355 B
Text
|
set(requires esp-tls nvs_flash esp_netif esp_http_server esp_wifi esp_eth esp_driver_gpio)
|
||
|
idf_build_get_property(target IDF_TARGET)
|
||
|
|
||
|
if(${target} STREQUAL "linux")
|
||
|
list(APPEND requires esp_stubs protocol_examples_common)
|
||
|
endif()
|
||
|
idf_component_register(SRCS "main.c"
|
||
|
INCLUDE_DIRS "."
|
||
|
PRIV_REQUIRES ${requires})
|