summaryrefslogtreecommitdiff
path: root/build.sh
blob: fc2ce3a16f3c375f2bbecc1cb2ffb1c46bda842e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash +x
#
# Written by nicesj.park <nicesj.park@samsung.com>

BASE="."
CWD=`dirname $0`
cd "$CWD"

. ../../../../setup.conf || exit 1

echo "Current working directory is \"$CWD\""
if ! [ -d $BASE ]; then
	echo "This is not proper package"
	exit 1;
fi

cd $BASE

. ${TPLDIR}/cmake.tpl
run