Updated revs

This commit is contained in:
WolverinDEV
2020-02-08 16:51:25 +01:00
parent b2e9f682d1
commit 6775d0d9e5
9 changed files with 33 additions and 3 deletions
+3
View File
@@ -78,3 +78,6 @@
[submodule "third_party/CXXTerminal"]
path = third_party/CXXTerminal
url = https://github.com/WolverinDEV/CXXTerminal.git
[submodule "third_party/soundio"]
path = third_party/soundio
url = https://github.com/WolverinDEV/libsoundio.git
+1 -1
Submodule client updated: 25173d5745...411778f932
Submodule
+1
Submodule scripts added at 0b83e74e2d
+1 -1
Submodule shared updated: 3f57ad4678...dca5bf1ce8
+1
View File
@@ -45,6 +45,7 @@ exec_script build_unbound.sh
exec_script build_spdlog.sh
exec_script build_stringvariable.sh
exec_script build_threadpool.sh
exec_script build_soundio.sh
exec_script build_tom.sh
exec_script build_yaml.sh
[[ ${build_os_type} != "win32" ]] && exec_script build_jemalloc.sh #Not required for TeaClient
Vendored Executable
+23
View File
@@ -0,0 +1,23 @@
#!/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="soundio"
requires_rebuild ${library_path}
[[ $? -eq 0 ]] && exit 0
_fpic=""
[[ ${build_os_type} == "linux" ]] && _fpic="-fPIC"
cmake_build ${library_path} -DCMAKE_C_FLAGS="${_fpic} -I../../boringssl/include/" -DBUILD_EXAMPLE_PROGRAMS=OFF -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE="Release"
check_err_exit ${library_path} "Failed to build libsoundio!"
set_build_successful ${library_path}
+1
View File
@@ -20,3 +20,4 @@ _cmake_options=""
cmake_build ${library_path} -DCMAKE_BUILD_TYPE=Debug ${_cmake_options}
check_err_exit ${library_path} "Failed to build Thread-Pool!"
set_build_successful ${library_path}
Vendored Submodule
+1
Submodule third_party/soundio added at 8bc42aa6ff