forked from xiaozhi/xiaozhi-esp32
21 lines
518 B
CMake
Executable File
21 lines
518 B
CMake
Executable File
set(SOURCES "AudioDevice.cc"
|
|
"FirmwareUpgrade.cc"
|
|
"SystemInfo.cc"
|
|
"SystemReset.cc"
|
|
"Application.cc"
|
|
"Display.cc"
|
|
"Button.cc"
|
|
"main.cc"
|
|
)
|
|
|
|
if(CONFIG_USE_AFE_SR)
|
|
list(APPEND SOURCES "AudioProcessor.cc" "WakeWordDetect.cc")
|
|
endif()
|
|
if(CONFIG_AUDIO_CODEC_ES8311_ES7210)
|
|
list(APPEND SOURCES "BoxAudioDevice.cc")
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${SOURCES}
|
|
INCLUDE_DIRS "."
|
|
)
|