2 Star 2 Fork 0

zssss/导盲语音助手

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
zss 提交于 2024-07-06 20:40 . 实现对话并连接数据库
cmake_minimum_required(VERSION 3.0.0)
project(voice-assistant VERSION 0.1.0 LANGUAGES C)
add_executable(voice-assistant main.c)
add_executable(control control.c)
target_link_libraries(control asound)
#add_executable(record record.c)
#target_link_libraries(record asound)
#add_executable(play play.c)
#target_link_libraries(play asound)
add_executable(key key.c record.c)
target_link_libraries(key gpiod asound)
add_subdirectory(snowboy)
add_executable(wake wake.c record.c stt.c token.c http.c config.c)
target_link_libraries(wake snowboy-wrapper snowboy-detect cblas m stdc++ asound curl cjson)
target_compile_definitions(wake PRIVATE _GNU_SOURCE)
add_executable(jrsc jrsc.c)
target_link_libraries(jrsc curl cjson)
add_executable(led led.c)
add_executable(chat chat.c config.c http.c record.c token.c stt.c)
target_link_libraries(chat snowboy-wrapper snowboy-detect cblas m stdc++ asound cjson curl resolv uuid )
target_compile_definitions(chat PRIVATE _GNU_SOURCE)
#add_executable(utils utils.c)
#target_link_libraries(utils uuid resolv)
add_executable(final final.c token.c tts.c stt.c config.c http.c play.c record.c)
target_link_libraries(final snowboy-wrapper snowboy-detect cjson cblas curl stdc++ uuid resolv asound m)
target_compile_definitions(final PRIVATE _GNU_SOURCE)
#add_executable(tts tts.c config.c http.c play.c)
#target_link_libraries(tts cjson curl uuid resolv asound)
#target_compile_definitions(tts PRIVATE _GNU_SOURCE)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zssssUGASQU/guide-voice-assistant.git
git@gitee.com:zssssUGASQU/guide-voice-assistant.git
zssssUGASQU
guide-voice-assistant
导盲语音助手
master

搜索帮助