Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
aa782052
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
1 年多 前同步成功
通知
207
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
aa782052
编写于
6月 21, 2021
作者:
Z
zhangyinhui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add compilation framework
上级
6487ca60
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
79 addition
and
0 deletion
+79
-0
speechnn/CMakeLists.txt
speechnn/CMakeLists.txt
+77
-0
speechnn/core/decoder/CMakeLists.txt
speechnn/core/decoder/CMakeLists.txt
+2
-0
未找到文件。
speechnn/CMakeLists.txt
浏览文件 @
aa782052
cmake_minimum_required
(
VERSION 3.14 FATAL_ERROR
)
project
(
deepspeech VERSION 0.1
)
set
(
CMAKE_VERBOSE_MAKEFILE on
)
# set std-14
set
(
CMAKE_CXX_STANDARD 14
)
# include file
include
(
FetchContent
)
include
(
ExternalProject
)
# fc_patch dir
set
(
FETCHCONTENT_QUIET off
)
get_filename_component
(
fc_patch
"fc_patch"
REALPATH BASE_DIR
"
${
CMAKE_SOURCE_DIR
}
"
)
set
(
FETCHCONTENT_BASE_DIR
${
fc_patch
}
)
###############################################################################
# Option Configurations
###############################################################################
# option configurations
option
(
TEST_DEBUG
"option for debug"
OFF
)
###############################################################################
# Include third party
###############################################################################
# #example for include third party
# FetchContent_Declare()
# # FetchContent_MakeAvailable was not added until CMake 3.14
# FetchContent_MakeAvailable()
# include_directories()
# ABSEIL-CPP
include
(
FetchContent
)
FetchContent_Declare
(
absl
GIT_REPOSITORY
"https://github.com/abseil/abseil-cpp.git"
GIT_TAG
"20210324.1"
)
FetchContent_MakeAvailable
(
absl
)
# libsndfile
include
(
FetchContent
)
FetchContent_Declare
(
libsndfile
GIT_REPOSITORY
"https://github.com/libsndfile/libsndfile.git"
GIT_TAG
"1.0.31"
)
FetchContent_MakeAvailable
(
libsndfile
)
###############################################################################
# Add local library
###############################################################################
# system lib
find_package
()
# if dir have CmakeLists.txt
add_subdirectory
()
# if dir do not have CmakeLists.txt
add_library
(
lib_name STATIC file.cc
)
target_link_libraries
(
lib_name item0 item1
)
add_dependencies
(
lib_name depend-target
)
###############################################################################
# Library installation
###############################################################################
install
()
###############################################################################
# Build binary file
###############################################################################
add_executable
()
target_link_libraries
()
speechnn/core/decoder/CMakeLists.txt
浏览文件 @
aa782052
aux_source_directory
(
. DIR_LIB_SRCS
)
add_library
(
decoder STATIC
${
DIR_LIB_SRCS
}
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录