2024-09-24 14:22:10 +02:00
|
|
|
set(requires esp-tls nvs_flash esp_netif esp_http_server esp_wifi esp_eth)
|
2023-09-20 14:05:10 +05:30
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
|
|
|
|
|
if(${target} STREQUAL "linux")
|
2024-09-24 14:22:10 +02:00
|
|
|
list(APPEND requires esp_stubs protocol_examples_common)
|
2023-01-09 15:21:40 +05:30
|
|
|
endif()
|
2019-04-28 15:38:46 +08:00
|
|
|
idf_component_register(SRCS "main.c"
|
2023-01-09 15:21:40 +05:30
|
|
|
INCLUDE_DIRS "."
|
2024-09-24 14:22:10 +02:00
|
|
|
PRIV_REQUIRES ${requires})
|