Files
xiaozhi-esp32/main/CMakeLists.txt

15 lines
357 B
CMake
Raw Normal View History

2024-08-31 18:00:23 +08:00
set(SOURCES "AudioDevice.cc"
"SystemInfo.cc"
2024-09-10 00:45:13 +08:00
"SystemReset.cc"
2024-08-31 18:00:23 +08:00
"WebSocketClient.cc"
"OpusEncoder.cc"
2024-09-10 05:58:56 +08:00
2024-08-31 18:00:23 +08:00
"Application.cc"
"main.cc"
2024-09-05 17:22:01 +08:00
"FirmwareUpgrade.cc"
2024-08-31 18:00:23 +08:00
)
idf_component_register(SRCS ${SOURCES}
INCLUDE_DIRS "."
)