forked from ethz-adrl/control-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_ct.sh
executable file
·55 lines (45 loc) · 1.37 KB
/
build_ct.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
51
52
53
54
55
#!/bin/bash
build_module(){
# if module directory exists
if [ -d "../$1" ]; then
echo " === Starting module " $1 " === "
# go to that module
cd ../$1
echo "Current directory is " $PWD
# collect array of all args, remove first arg because that is equal to the module to be built
build_flags=( "$@" )
unset build_flags[0]
# make and go to build directory
mkdir -p build && cd build
echo "Building with the following flags ... "
printf '%s\n' "${build_flags[@]}"
cmake .. ${build_flags[*]} || { echo "cmake failed"; exit 1; }
make -j8 || { echo "make failed"; exit 1; }
sudo make install >/dev/null
cd ..
else
echo "ERROR: an error occurred during building or installing. Try building manually."
exit 1
fi
}
## get current folder and make sure it is *ct*
curr_folder=${PWD##*/}
if [ $curr_folder != "ct" ]; then
echo "ERROR: you need to start the installer from the control-toolbox/ct directory."
exit 1
fi
# check number of user input args
# no args
if [ -z "$1" ]
then
echo "No build flags supplied, using -DCMAKE_BUILD_TYPE=Release"
BUILD_FLAGS="-DCMAKE_BUILD_TYPE=Release"
else
# entire user input is interpreted as build flags
BUILD_FLAGS="$@"
fi
build_module ct_core $BUILD_FLAGS
build_module ct_optcon $BUILD_FLAGS
build_module ct_rbd $BUILD_FLAGS
build_module ct_models $BUILD_FLAGS
exit 0