CMakeLists.txt 391 B

12345678910
  1. idf_build_get_property(target IDF_TARGET)
  2. if(${target} STREQUAL "linux")
  3. return() # This component is not supported by the POSIX/Linux simulator
  4. endif()
  5. idf_component_register(SRCS "src/esp_https_ota.c"
  6. INCLUDE_DIRS "include"
  7. REQUIRES esp_http_client bootloader_support esp_app_format esp_event
  8. PRIV_REQUIRES log app_update)