barrier/clean_build.sh

33 lines
1.1 KiB
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-09-22 21:46:52 +00:00
cd "$(dirname "$0")" || exit 1
2018-02-01 23:42:21 +00:00
# some environments have cmake v2 as 'cmake' and v3 as 'cmake3'
# check for cmake3 first then fallback to just cmake
B_CMAKE=`type cmake3 2>/dev/null`
if [ $? -eq 0 ]; then
2021-09-22 21:46:52 +00:00
B_CMAKE=`echo "$B_CMAKE" | cut -d' ' -f3`
2018-02-24 19:39:30 +00:00
else
B_CMAKE=cmake
2018-02-24 19:39:30 +00:00
fi
2018-02-13 19:49:39 +00:00
# default build configuration
B_BUILD_TYPE=${B_BUILD_TYPE:-Debug}
if [ "$(uname)" = "Darwin" ]; then
2018-02-13 19:49:39 +00:00
# OSX needs a lot of extra help, poor thing
# run the osx_environment.sh script to fix paths
. ./osx_environment.sh
B_CMAKE_FLAGS="-DCMAKE_OSX_SYSROOT=$(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 $B_CMAKE_FLAGS"
2018-02-13 19:49:39 +00:00
fi
# allow local customizations to build environment
[ -r ./build_env.sh ] && . ./build_env.sh
# Initialise Git submodules
git submodule update --init --recursive
B_CMAKE_FLAGS="-DCMAKE_BUILD_TYPE=$B_BUILD_TYPE $B_CMAKE_FLAGS"
rm -rf build
mkdir build || exit 1
cd build || exit 1
2021-09-22 21:46:52 +00:00
echo "Starting Barrier $B_BUILD_TYPE build..."
$B_CMAKE $B_CMAKE_FLAGS .. || exit 1
make || exit 1
echo "Build completed successfully"