-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·59 lines (49 loc) · 1.01 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
oldCC=$CC
oldCXX=$CXX
# Set the compiler to clang
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
# rebuilding
rebuild="$1"
# Run the cleaner and then build to make sure its fresh
clear
if [ -z "$rebuild" ]; then
sh cleaner.sh
fi
# Pull all submodules
git submodule foreach git pull origin master
# Go into Valkyrie and update
cd TicTacToe/Valkyrie
git init
git checkout .
git submodule init
git submodule update
git pull
cd ../../
# Go into NordicOS and update
cd TicTacToe/NordicOS
git init
git checkout .
git submodule init
git submodule update
git pull
cd ../../
# Build
cmake .
make
# Set Compiler Back
export CC=$CC
export CXX=$CXX
# Cleanup the mess
if [ -z "$rebuild" ]; then
rm -rf `find . -type d -name CMakeFiles`
rm -rf `find . -type d -name build`
rm -rf `find . -type f -name CMakeCache.txt`
rm -rf `find . -type f -name Makefile`
rm -rf `find . -type f -name cmake_install.cmake`
fi
# Run the app to make sure its stable
cd Build
cp -r ../GameFiles .
./TicTacToe.app