15 lines
499 B
Bash
Executable File
15 lines
499 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source ../scripts/build_helper.sh
|
|
|
|
library_path="protobuf"
|
|
requires_rebuild ${library_path}
|
|
[[ $? -eq 0 ]] && exit 0
|
|
|
|
#./${library_path}/libraries/build_event.sh
|
|
#check_err_exit ${library_path} "Failed to build library libevent"
|
|
|
|
base_path_suffix="/cmake/"
|
|
cmake_build ${library_path} -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_CXX_FLAGS="-std=c++11 -fPIC" -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
check_err_exit ${library_path} "Failed to build protobuf!"
|
|
set_build_successful ${library_path} |