Updated revs
This commit is contained in:
@@ -66,3 +66,9 @@
|
||||
[submodule "third_party/spdlog"]
|
||||
path = third_party/spdlog
|
||||
url = https://git.did.science/TeaSpeak/libraries/spdlog.git
|
||||
[submodule "third_party\\abseil-cpp"]
|
||||
path = third_party\\abseil-cpp
|
||||
url = https://github.com/abseil/abseil-cpp.git
|
||||
[submodule "third_party/webrtc-audio-processing"]
|
||||
path = third_party/webrtc-audio-processing
|
||||
url = https://github.com/WolverinDEV/webrtc-audio-processin.git
|
||||
|
||||
+1
-1
Submodule build-helpers updated: efd3787341...e88704be62
+1
-1
Submodule client updated: 09e3c78dd8...9573cd5380
+1
-1
Submodule shared updated: 7c82007b4e...f4aaec6481
Vendored
+1
-1
Submodule third_party/DataPipes updated: f767d33520...0ba69c4855
+1
Submodule third_party/abseil-cpp added at 11231fe5ae
Vendored
+2
-1
@@ -60,7 +60,8 @@ function exec_script_external() {
|
||||
echo ""
|
||||
}
|
||||
|
||||
|
||||
exec_script_external build_abseil.sh abseil-cpp
|
||||
exec_script_external build_webrtc_audio_processing.sh webrtc-audio-processing "abseil_library=$(pwd)/abseil-cpp"
|
||||
exec_script_external build_rnnoise.sh rnnoise
|
||||
exec_script_external build_libevent.sh libevent
|
||||
exec_script_external build_datapipes.sh DataPipes
|
||||
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
[[ -z "${build_helper_file}" ]] && {
|
||||
echo "Missing build helper file. Please define \"build_helper_file\""
|
||||
exit 1
|
||||
}
|
||||
source ${build_helper_file}
|
||||
[[ $build_helpers_defined -ne 1 ]] && {
|
||||
echo "Failed to include build helpers."
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
||||
library_path="soxr"
|
||||
requires_rebuild ${library_path}
|
||||
[[ $? -eq 0 ]] && exit 0
|
||||
|
||||
_fpic=""
|
||||
[[ ${build_os_type} == "linux" ]] && _fpic="-fPIC"
|
||||
cmake_build ${library_path} -DCMAKE_C_FLAGS="${_fpic}" -DBUILD_SHARED_RUNTIME=OFF -DWITH_OPENMP=OFF -DBUILD_TESTS=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_EXAMPLES=OFF
|
||||
check_err_exit ${library_path} "Failed to build soxr!"
|
||||
set_build_successful ${library_path}
|
||||
Vendored
+1
-1
Submodule third_party/rnnoise updated: eb3dde20fe...3767c2d4c0
+1
Submodule third_party/webrtc-audio-processing added at be762a3d62
+1
-1
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
#'/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/Tools/VsDevCmd.bat' -arch=amd64 -host_arch=amd64
|
||||
#'/g/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/Tools/VsDevCmd.bat' -arch=amd64 -host_arch=amd64
|
||||
|
||||
|
||||
export build_os_type=win32
|
||||
|
||||
Reference in New Issue
Block a user