mirror of
https://github.com/input-leap/input-leap.git
synced 2025-12-13 20:36:57 +01:00
44 lines
1.4 KiB
Bash
Executable File
44 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
# some environments have cmake v2 as 'cmake' and v3 as 'cmake3'
|
|
# check for cmake3 first then fallback to just cmake
|
|
[ -n "$B_CMAKE" ] || B_CMAKE=$(command -v cmake3)
|
|
[ -n "$B_CMAKE" ] || B_CMAKE=$(command -v cmake)
|
|
if [ -z "$B_CMAKE" ]; then
|
|
echo "ERROR: CMake not in $PATH, cannot build! Please install CMake, or if this persists, file a bug report."
|
|
exit 1
|
|
fi
|
|
|
|
B_BUILD_DIR="${B_BUILD_DIR:-build}"
|
|
B_BUILD_TYPE="${B_BUILD_TYPE:-Debug}"
|
|
B_CMAKE_FLAGS="-DCMAKE_BUILD_TYPE=${B_BUILD_TYPE} ${B_CMAKE_FLAGS:-}"
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
# macOS needs a little help, so we source this environment script to fix paths.
|
|
[ -e ./macos_environment.sh ] && . ./macos_environment.sh
|
|
B_CMAKE_FLAGS="${B_CMAKE_FLAGS} -DCMAKE_OSX_SYSROOT=$(xcrun --sdk macosx --show-sdk-path) -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9"
|
|
fi
|
|
|
|
# Prefer ninja if available
|
|
if command -v ninja 2>/dev/null; then
|
|
B_CMAKE_FLAGS="-GNinja ${B_CMAKE_FLAGS}"
|
|
fi
|
|
|
|
# allow local customizations to build environment
|
|
[ -r ./build_env.sh ] && . ./build_env.sh
|
|
|
|
set -e
|
|
|
|
# Initialise Git submodules
|
|
git submodule update --init --recursive
|
|
|
|
rm -rf ${B_BUILD_DIR}
|
|
mkdir ${B_BUILD_DIR}
|
|
cd ${B_BUILD_DIR}
|
|
echo "Starting Input Leap $B_BUILD_TYPE build in '${B_BUILD_DIR}'..."
|
|
"$B_CMAKE" $B_CMAKE_FLAGS ..
|
|
"$B_CMAKE" --build . --parallel
|
|
echo "Build completed successfully"
|