Updated revs

This commit is contained in:
WolverinDEV 2021-05-01 23:37:57 +02:00
parent fd2ee5edb8
commit 5a19e055e6
11 changed files with 38 additions and 7 deletions

6
.gitmodules vendored
View File

@ -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 @@
Subproject commit efd37873410dbc93964479ea6498e84be43c5248
Subproject commit e88704be626aa4ef9d8f079edc4f5075ef52172a

2
client

@ -1 +1 @@
Subproject commit 09e3c78dd84ee7719d0a4dcc303ca8e5e8f7cddd
Subproject commit 9573cd53805d38c7776d47749f3deb850e14d0e3

2
shared

@ -1 +1 @@
Subproject commit 7c82007b4e5d5c66612f349f8a810c420ef4de75
Subproject commit f4aaec6481d07365550a993b68a7b5920bc8fa51

@ -1 +1 @@
Subproject commit f767d33520881c2f44958fe9616f2965a3e19330
Subproject commit 0ba69c4855229ee48da3bfc4d07854fcddb4fbaa

1
third_party/abseil-cpp vendored Submodule

@ -0,0 +1 @@
Subproject commit 11231fe5ae1693be41415cc5206b15394932b603

View File

@ -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

22
third_party/build_soxr.sh vendored Normal file
View File

@ -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}

2
third_party/rnnoise vendored

@ -1 +1 @@
Subproject commit eb3dde20fee65f921b0b66a7df217a91b8df5000
Subproject commit 3767c2d4c0172464a8a5e6adf8408a9b3e9b5d6c

@ -0,0 +1 @@
Subproject commit be762a3d62f1670898b10406749d409cce35cac0

View File

@ -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