-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
55 lines (45 loc) · 890 Bytes
/
build.sh
File metadata and controls
55 lines (45 loc) · 890 Bytes
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
SCRIPT=$(readlink -f "$0")
BASEDIR=$(dirname "$SCRIPT")
cd $BASEDIR
if [ ! -d CodeCraft-2019 ]
then
echo "ERROR: $BASEDIR is not a valid directory of SDK_C++ for CodeCraft-2019."
echo " Please run this script in a regular directory of SDK_C++."
exit -1
fi
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-2019
tmp=$?
echo "cmake return:" ${tmp}
if [ ${tmp} -ne 0 ]
then
echo "cmake <>return:" ${tmp}
exit -1
fi
make
tmp=$?
echo "make return:" ${tmp}
if [ ${tmp} -ne 0 ]
then
echo "make <>return:" ${tmp}
exit -1
fi
cd ..
if [ -f CodeCraft-code.tar.gz ]
then
rm -f CodeCraft-code.tar.gz
fi
tar -zcPf CodeCraft-code.tar.gz *