CMakeLists.txt 623 B

12345678910111213
  1. idf_component_register(SRCS "src/httpd_main.c"
  2. "src/httpd_parse.c"
  3. "src/httpd_sess.c"
  4. "src/httpd_txrx.c"
  5. "src/httpd_uri.c"
  6. "src/httpd_ws.c"
  7. "src/util/ctrl_sock.c"
  8. INCLUDE_DIRS "include"
  9. PRIV_INCLUDE_DIRS "src/port/esp32" "src/util"
  10. REQUIRES http_parser # for http_parser.h
  11. PRIV_REQUIRES lwip mbedtls esp_timer)
  12. target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")