CMakeLists.txt 271 B

1234567
  1. set(requires "")
  2. if(${IDF_TARGET} STREQUAL "linux")
  3. list(APPEND requires esp_stubs esp-tls esp_http_server protocol_examples_common nvs_flash)
  4. endif()
  5. idf_component_register(SRCS "main.c"
  6. INCLUDE_DIRS "."
  7. REQUIRES ${requires})