40 lines
788 B
CMake
40 lines
788 B
CMake
idf_component_register(
|
|
SRCS
|
|
"main.c"
|
|
"config/config_manager.c"
|
|
"wifi/wifi_manager.c"
|
|
"web/web_server.c"
|
|
"web/web_api.c"
|
|
"bluetooth/bt_manager.c"
|
|
"bluetooth/bt_hfp.c"
|
|
"usb_audio/usb_audio_host.c"
|
|
"audio/audio_router.c"
|
|
"sip/sip_client.c"
|
|
"sip/sip_parser.c"
|
|
INCLUDE_DIRS
|
|
"."
|
|
"config"
|
|
"wifi"
|
|
"web"
|
|
"bluetooth"
|
|
"usb_audio"
|
|
"audio"
|
|
"sip"
|
|
EMBED_FILES
|
|
"web/static/index.html"
|
|
"web/static/style.css"
|
|
"web/static/app.js"
|
|
REQUIRES
|
|
nvs_flash
|
|
esp_wifi
|
|
esp_netif
|
|
esp_http_server
|
|
bt
|
|
usb
|
|
driver
|
|
esp_event
|
|
json
|
|
lwip
|
|
mdns
|
|
)
|