Files
esp-idf/components/esp_http_server/CMakeLists.txt
T

14 lines
623 B
CMake
Raw Normal View History

idf_component_register(SRCS "src/httpd_main.c"
"src/httpd_parse.c"
"src/httpd_sess.c"
"src/httpd_txrx.c"
"src/httpd_uri.c"
2019-11-04 20:51:59 +11:00
"src/httpd_ws.c"
"src/util/ctrl_sock.c"
INCLUDE_DIRS "include"
PRIV_INCLUDE_DIRS "src/port/esp32" "src/util"
2021-12-31 13:50:55 +05:30
REQUIRES http_parser # for http_parser.h
2019-11-04 20:51:59 +11:00
PRIV_REQUIRES lwip mbedtls esp_timer)
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")