forked from firebreath/FireBreath
-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.sh
64 lines (52 loc) · 1.33 KB
/
common.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
56
57
58
59
60
61
62
63
#!/bin/bash
RUN_FROM=`dirname "$0"`
FB_ROOT_REL="${0%/*}"
FB_ROOT=`cd "${FB_ROOT_REL}"; pwd`
BUILDDIR=""
PROJDIR=""
USED_ARGS=0
function print_usage()
{
echo "usage: $0 [<project dir> [<build dir>]] [<params ...>]"
}
function check_proj_dir()
{
# allow the project dir to be a symlink
if [[ !( -d $1 || -L $1 ) ]]; then
echo "ERROR: Project directory $1 does not exist."
print_usage
exit 1
fi
}
if [[ "$1" != "" && ! ( "$1" =~ ^- ) ]]; then
# $1 not empty and doesn't start with '-'
check_proj_dir "$1"
PROJDIR="$1"
USED_ARGS=1
if [[ "$2" != "" && ! ( "$2" =~ ^- ) ]]; then
# $2 not empty and doesn't start with '-'
BUILDDIR="$2"
USED_ARGS=2
fi
fi
if [ "$PROJDIR" = "" ]; then
# PROJDIR not set
PROJDIR="${RUN_FROM}/projects"
fi
if [ "$BUILDDIR" = "" ]; then
# BUILDIR not set
if [ "$PROJDIR" = "examples" ]; then
BUILDDIR="${RUN_FROM}/buildex"
else
BUILDDIR="${RUN_FROM}/build"
fi
fi
check_proj_dir "$PROJDIR"
PROJDIR=`cd $PROJDIR; pwd`
mkdir -p "$BUILDDIR"
BUILDDIR=`cd "$BUILDDIR"; pwd`
echo Using projects in: $PROJDIR
echo Generating build files in: $BUILDDIR
echo NOTE: The build files in $BUILDDIR should *NEVER* be modified directly. Make changes in cmake and re-run this script.
# remove consumed arguments
shift $USED_ARGS