blob: b6d9216a4b59b50ff0c945a1e4e52ccb13293d62 (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/bash
function build {
echo "ACTION: build"
if [ ! -d "$1/$2" ]; then
echo "INFO: build dir ($1/$2) doesn't exist, created it!"
mkdir -p "$1/$2"
fi
pushd "$1/$2"
#cd "$1/$2"
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=$3 $1
make
popd
}
function clean {
echo "ACTION: clean"
if [ -d "$1/$2" ]; then
rm -vrf "$1/$2"
fi
}
function rebuild {
clean $1 $2
build $1 $2 $3
}
function printhelp {
echo "Usage: build.sh <action> <subdir> [config]"
echo " action: can be one of the following"
echo " build: build this project."
echo " rebuild: rebuild this project."
echo " clean: clean the previous build."
echo " install: install the build result."
echo " subdir: the subdir into which the build is done."
echo " config: can be Debug or Release. Ignored if the action is 'clean'."
}
function checkparams {
if [ "$#" -ne "$(($1+1))" ]; then
echo "ERROR: Wrong number of parameters, expected $1 but got $(($#-1))"
printhelp
exit 1
fi
}
function main {
CURRENT_DIR=$( dirname "$(readlink -f "$0")" )
echo "Current script: $CURRENT_DIR"
if [ "$#" -lt "1" ]; then
echo "ERROR: At least <action> must be specified!"
exit 1
fi
case "$1" in
"build")
checkparams 3 $*
build $CURRENT_DIR $2 $3
;;
"rebuild")
checkparams 3 $*
rebuild $CURRENT_DIR $2 $3
;;
"clean")
checkparams 2 $*
clean $CURRENT_DIR $2
;;
"install")
checkparams 3 $*
echo "ERROR: Not implemented yet!"
;;
*)
echo "ERROR: Unknown action '$3'!"
exit 1
;;
esac
}
main $*
|