forked from QW-Group/qtv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_cmake.sh
executable file
·50 lines (40 loc) · 1.39 KB
/
build_cmake.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash -e
# Useful if you willing to stop on first error, also prints what is executed.
#set -ex
BUILDDIR="${BUILDDIR:-build}" # Default build dir.
# Define target platforms, feel free to comment out if you does not require some of it,
# or you can call this script with plaforms list you willing to build on the command line.
DEFAULT_PLATFORMS=(
linux-amd64
linux-aarch64
linux-armhf
linux-i686
windows-x64
windows-x86
)
PLATFORMS=("${@:-${DEFAULT_PLATFORMS[@]}}")
# If V variable is not empty then provide -v argument to cmake --build command (verbose output).
V="${V:-}"
[ ! -z ${V} ] && V="-v"
# Overwrite build type with B variable.
B="${B:-Release}"
[ ! -z ${B} ] && BUILD="-DCMAKE_BUILD_TYPE=${B}"
# The maximum number of concurrent processes to use when building.
export CMAKE_BUILD_PARALLEL_LEVEL="${CMAKE_BUILD_PARALLEL_LEVEL:-8}"
# Use specified (with G variable) CMake generator or use default generator (most of the time its make) or ninja if found.
G="${G:-}"
[ -z "${G}" ] && hash ninja >/dev/null 2>&1 && G="Ninja"
[ ! -z "${G}" ] && export CMAKE_GENERATOR="${G}"
rm -rf ${BUILDDIR}
mkdir -p ${BUILDDIR}
# Build platforms one by one.
for name in "${PLATFORMS[@]}"; do
P="${BUILDDIR}/$name"
mkdir -p "${P}"
case "${name}" in
* ) # Build native library.
cmake -B "${P}" -S . ${BUILD} -DCMAKE_TOOLCHAIN_FILE="tools/cross-cmake/${name}.cmake"
cmake --build "${P}" ${V}
;;
esac
done