2019-07-01 16:32:56 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source ../scripts/build_helper.sh
|
|
|
|
|
|
|
|
library_path="yaml-cpp"
|
|
|
|
requires_rebuild ${library_path}
|
|
|
|
[[ $? -eq 0 ]] && exit 0
|
|
|
|
|
2019-07-04 12:00:03 -04:00
|
|
|
_cxx_flags=""
|
|
|
|
[[ ${build_os_type} == "linux" ]] && _cxx_flags="-D_GLIBCXX_USE_CXX11_ABI=1 -std=c++11 -fPIC"
|
|
|
|
cmake_build ${library_path} -DYAML_CPP_BUILD_TESTS=OFF -DYAML_CPP_BUILD_TOOLS=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${_cxx_flags}"
|
2019-07-01 16:32:56 -04:00
|
|
|
check_err_exit ${library_path} "Failed to build yaml-cpp!"
|
|
|
|
set_build_successful ${library_path}
|