forked from tonyp7/esp32-wifi-manager
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
85 lines (81 loc) · 2.4 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
cmake_minimum_required(VERSION 3.5)
idf_component_register(
SRCS
src/include/wifi_manager.h
src/include/wifi_manager_defs.h
src/include/http_server.h
src/include/http_server_auth_type.h
src/include/http_server_resp.h
src/include/sta_ip.h
src/access_points_list.c
src/access_points_list.h
src/ap_ssid.c
src/ap_ssid.h
src/dns_server.c
src/json.c
src/json.h
src/json_access_points.c
src/json_access_points.h
src/json_network_info.c
src/json_network_info.h
src/http_req.c
src/http_req.h
src/http_server.c
src/http_server_accept_and_handle_conn.c
src/http_server_accept_and_handle_conn.h
src/http_server_auth.c
src/http_server_auth.h
src/http_server_auth_type.c
src/http_server_auth_common.h
src/http_server_auth_digest.c
src/http_server_auth_digest.h
src/http_server_auth_ruuvi.c
src/http_server_auth_ruuvi.h
src/http_server_ecdh.c
src/http_server_ecdh.h
src/http_server_handle_req.c
src/http_server_handle_req.h
src/http_server_handle_req_delete_auth.c
src/http_server_handle_req_delete_auth.h
src/http_server_handle_req_get_auth.c
src/http_server_handle_req_get_auth.h
src/http_server_handle_req_post_auth.c
src/http_server_handle_req_post_auth.h
src/http_server_resp.c
src/sta_ip_safe.c
src/sta_ip_safe.h
src/sta_ip_unsafe.c
src/sta_ip_unsafe.h
src/wifi_manager.c
src/wifi_manager_default_config.c
src/wifi_manager_handle_msg.c
src/wifi_manager_internal.c
src/wifi_manager_internal.h
src/wifiman_cfg_blob.c
src/wifiman_cfg_blob_convert.c
src/wifiman_cfg_blob_convert.h
src/wifiman_config.c
src/wifiman_config.h
src/wifiman_msg.c
src/wifiman_msg.h
src/wifiman_md5.c
src/include/wifiman_md5.h
src/wifiman_sha256.c
src/wifiman_sha256.h
INCLUDE_DIRS
src/include
PRIV_REQUIRES
log
nvs_flash
mdns
wpa_supplicant
lwip
esp_http_server
json
ruuvi.esp_wrappers.c
ruuvi.json_stream_gen.c
)
target_compile_options(${COMPONENT_LIB} PRIVATE
-Wstack-usage=280
-fstack-usage
)