CMakeLists.txt 275 B

12345678910
  1. if (CONFIG_ESP_HTTPS_SERVER_ENABLE)
  2. set(src "src/https_server.c")
  3. set(inc "include")
  4. endif()
  5. idf_component_register(SRCS ${src}
  6. INCLUDE_DIRS ${inc}
  7. REQUIRES esp_http_server esp-tls
  8. PRIV_REQUIRES lwip)