Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
sherpaonnx
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
frankyoujian
2023-03-07 18:01:29 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2023-03-07 18:01:29 +0800
Commit
3a79115884da56aacd02321b776904c80d75394c
3a791158
1 parent
1cf2c041
fix cmake parse path string error (#88)
Co-authored-by: Jian You (jianyou) <jianyou@cisco.com>
隐藏空白字符变更
内嵌
并排对比
正在显示
7 个修改的文件
包含
7 行增加
和
0 行删除
cmake/asio.cmake
cmake/googletest.cmake
cmake/kaldi-native-fbank.cmake
cmake/onnxruntime.cmake
cmake/portaudio.cmake
cmake/pybind11.cmake
cmake/websocketpp.cmake
cmake/asio.cmake
查看文件 @
3a79115
...
...
@@ -18,6 +18,7 @@ function(download_asio)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
asio_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
asio_URL
}
"
asio_URL
)
set
(
asio_URL2
)
break
()
endif
()
...
...
cmake/googletest.cmake
查看文件 @
3a79115
...
...
@@ -18,6 +18,7 @@ function(download_googltest)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
googletest_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
googletest_URL
}
"
googletest_URL
)
set
(
googletest_URL2
)
break
()
endif
()
...
...
cmake/kaldi-native-fbank.cmake
查看文件 @
3a79115
...
...
@@ -22,6 +22,7 @@ function(download_kaldi_native_fbank)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
kaldi_native_fbank_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
kaldi_native_fbank_URL
}
"
kaldi_native_fbank_URL
)
set
(
kaldi_native_fbank_URL2
)
break
()
endif
()
...
...
cmake/onnxruntime.cmake
查看文件 @
3a79115
...
...
@@ -100,6 +100,7 @@ function(download_onnxruntime)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
onnxruntime_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
onnxruntime_URL
}
"
onnxruntime_URL
)
set
(
onnxruntime_URL2
)
break
()
endif
()
...
...
cmake/portaudio.cmake
查看文件 @
3a79115
...
...
@@ -19,6 +19,7 @@ function(download_portaudio)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
portaudio_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
portaudio_URL
}
"
portaudio_URL
)
set
(
portaudio_URL2
)
break
()
endif
()
...
...
cmake/pybind11.cmake
查看文件 @
3a79115
...
...
@@ -18,6 +18,7 @@ function(download_pybind11)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
pybind11_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
pybind11_URL
}
"
pybind11_URL
)
set
(
pybind11_URL2
)
break
()
endif
()
...
...
cmake/websocketpp.cmake
查看文件 @
3a79115
...
...
@@ -19,6 +19,7 @@ function(download_websocketpp)
foreach
(
f IN LISTS possible_file_locations
)
if
(
EXISTS
${
f
}
)
set
(
websocketpp_URL
"
${
f
}
"
)
file
(
TO_CMAKE_PATH
"
${
websocketpp_URL
}
"
websocketpp_URL
)
set
(
websocketpp_URL2
)
break
()
endif
()
...
...
请
注册
或
登录
后发表评论