1 Star 0 Fork 129

whabc100/西安工程大学智能音箱实训

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘煜 提交于 2020-07-09 10:47 . 增加cmakelists
cmake_minimum_required(VERSION 3.1...3.18)
project(SmartSpeaker)
add_executable(tts tts.c auth.c cJSON.c)
target_link_libraries(tts curl)
target_compile_options(tts PRIVATE -Wall -D_GNU_SOURCE)
add_executable(robot robot.c cJSON.c)
target_link_libraries(robot curl)
target_compile_options(robot PRIVATE -Wall)
add_library(snowboy-detect-c-wrapper STATIC snowboy-detect-c-wrapper.cc)
target_compile_options(snowboy-detect-c-wrapper PRIVATE -Wall -D_GLIBCXX_USE_CXX11_ABI=0)
target_link_libraries(snowboy-detect-c-wrapper ${CMAKE_SOURCE_DIR}/libsnowboy-detect.a)
add_executable(snowboy snowboy.c stt.c auth.c cJSON.c)
target_link_libraries(snowboy curl asound cblas snowboy-detect-c-wrapper)
target_compile_options(snowboy PRIVATE -Wall -D_GNU_SOURCE)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/whabc100/XPU-SmartSpeaker-Lab2020.6.git
[email protected]:whabc100/XPU-SmartSpeaker-Lab2020.6.git
whabc100
XPU-SmartSpeaker-Lab2020.6
西安工程大学智能音箱实训
master

搜索帮助