CMakeLists.txt 492 B

12345678910
  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/util/ctrl_sock.c"
  7. INCLUDE_DIRS "include"
  8. PRIV_INCLUDE_DIRS "src/port/esp32" "src/util"
  9. REQUIRES nghttp # for http_parser.h
  10. PRIV_REQUIRES lwip)