-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·35 lines (30 loc) · 955 Bytes
/
build.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
#!/bin/sh
set -e # abort on error
MAKE=`which gmake make 2>/dev/null | head -n1` # prefer GNU make
test -z "$MAKE" && echo "No (g)make found" >&2 && exit 1
CPUCOUNT=$(nproc --all 2>/dev/null || echo 1)
MAKEFLAGS="-j$CPUCOUNT"
if test -z "$*"; then
echo "build.sh: Please specify configure options," \
"--none for defaults, or --full for all" >&2
exit 1
elif test "$*" = "--help" || test "$*" = "-h"; then
echo "build.sh: Please specify configure options," \
"--none for defaults, or --full for all" >&2
exit 1
fi
if test "$*" = "--none"; then
cmake . -DUSE_GSL=
elif test "$*" = "--common"; then
cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL= -DUSE_SCTP=
elif test "$*" = "--full"; then
cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL=1 -DUSE_SCTP=1
else
cmake . "$@"
fi
# For git checkout, run unit tests.
if test -e gtest/.git; then
"$MAKE" $MAKEFLAGS sipp_unittest
./sipp_unittest
fi
"$MAKE" $MAKEFLAGS