]> granicus.if.org Git - esp-idf/blob - components/http_server/CMakeLists.txt
Merge branch 'bugfix/btdm_coex_hw_blocking' into 'master'
[esp-idf] / components / http_server / CMakeLists.txt
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
10 set(COMPONENT_REQUIRES nghttp)  # for http_parser.h
11 set(COMPONENT_PRIV_REQUIRES lwip)
12
13 register_component()