esp32-sip-client-with-headset/main/CMakeLists.txt

41 lines
804 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
mbedtls
)