forked from aeron-io/simple-binary-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcppbuild
More file actions
executable file
·64 lines (57 loc) · 1.56 KB
/
cppbuild
File metadata and controls
executable file
·64 lines (57 loc) · 1.56 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash
SOURCE_DIR="$(pwd)"
BUILD_DIR="${SOURCE_DIR}/cppbuild/Release"
EXTRA_CMAKE_ARGS=""
ncpus=1
case "$(uname)" in
Darwin* )
ncpus=$(sysctl -n hw.ncpu)
;;
Linux*)
ncpus=$(lscpu -p | grep -c -E -v '^#')
;;
esac
while [[ $# -gt 0 ]]
do
option="${1}"
case ${option} in
--c-warnings-as-errors)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DC_WARNINGS_AS_ERRORS=ON"
echo "Enabling warnings as errors for C"
shift
;;
--cxx-warnings-as-errors)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DCXX_WARNINGS_AS_ERRORS=ON"
echo "Enabling warnings as errors for C++"
shift
;;
-d|--debug-build)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DCMAKE_BUILD_TYPE=Debug"
export BUILD_DIR="${SOURCE_DIR}/cppbuild/Debug"
export BUILD_CONFIG=Debug
shift
;;
--sanitise-build)
EXTRA_CMAKE_ARGS="${EXTRA_CMAKE_ARGS} -DSANITISE_BUILD=ON"
echo "Enabling sanitise build"
shift
;;
-h|--help)
echo "${0} [--c-warnings-as-errors] [--cxx-warnings-as-errors] [--debug-build] [--sanitise-build]"
exit
;;
*)
echo "Unknown option ${option}"
echo "Use --help for help"
exit
;;
esac
done
echo "Will make with \"-j ${ncpus}\"."
if [ -d "${BUILD_DIR}" ] ; then
echo "Build directory (${BUILD_DIR}) exists, removing."
rm -rf "${BUILD_DIR}"
fi
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}" || exit
(cmake -G "Unix Makefiles" ${EXTRA_CMAKE_ARGS} "${SOURCE_DIR}" && make clean && make -j ${ncpus} all && ctest -C Release --output-on-failure)