mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
8 lines
261 B
CMake
8 lines
261 B
CMake
set(requires "")
|
|
if(${IDF_TARGET} STREQUAL "linux")
|
|
list(APPEND requires esp_stubs esp-tls esp_http_server protocol_examples_common)
|
|
endif()
|
|
idf_component_register(SRCS "main.c"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES ${requires})
|