Updated revs
This commit is contained in:
Vendored
+1
@@ -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
|
||||
|
||||
+23
@@ -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}
|
||||
Vendored
+1
@@ -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}
|
||||
|
||||
|
||||
+1
Submodule third_party/soundio added at 8bc42aa6ff
Reference in New Issue
Block a user