CMakeLists.txt 310 B

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