CMakeLists.txt 437 B

12345678910111213
  1. set(COMPONENT_ADD_INCLUDEDIRS include)
  2. set(COMPONENT_PRIV_INCLUDEDIRS src/port/esp32 src/util)
  3. set(COMPONENT_SRCS "src/httpd_main.c"
  4. "src/httpd_parse.c"
  5. "src/httpd_sess.c"
  6. "src/httpd_txrx.c"
  7. "src/httpd_uri.c"
  8. "src/util/ctrl_sock.c")
  9. set(COMPONENT_REQUIRES nghttp) # for http_parser.h
  10. set(COMPONENT_PRIV_REQUIRES lwip)
  11. register_component()