-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
44 lines (40 loc) · 800 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
36
37
38
39
40
41
42
43
44
#!/bin/bash
SCRIPT=$(readlink -f "$0")
BASEDIR=$(dirname "$SCRIPT")
cd $BASEDIR
if [ ! -d CodeCraft-2022 ]
then
echo "ERROR: can not find $BASEDIR/CodeCraft-2022 directory."
echo " Please run this script in a regular directory of SDK_C++."
exit -1
fi
which cmake
cmake --version 2>&1
tmp=$?
if [ ${tmp} -ne 0 ]
then
echo "ERROR: You should install cmake(2.8 or later) first."
echo " Please goto https://cmake.org to download and install it."
exit
fi
rm -fr bin
mkdir bin
rm -fr build
mkdir build
cd build
cmake ../CodeCraft-2022/src
tmp=$?
echo "cmake compile return:" ${tmp}
if [ ${tmp} -ne 0 ]
then
echo "cmake compile <>return:" ${tmp}
exit -1
fi
make
tmp=$?
echo "make return:" ${tmp}
if [ ${tmp} -ne 0 ]
then
echo "make <>return:" ${tmp}
exit -1
fi