drogon/build.sh

50 lines
885 B
Bash
Raw Normal View History

2018-11-16 15:31:08 +08:00
#!/bin/bash
2019-03-06 15:57:05 +08:00
#build drogon
2018-11-16 15:31:08 +08:00
function build_drogon() {
2018-11-16 18:25:41 +08:00
#Update the submodule and initialize
2018-11-16 15:31:08 +08:00
git submodule update --init
2019-03-06 15:57:05 +08:00
#Save current directory
2018-11-16 15:31:08 +08:00
current_dir="${PWD}"
2019-03-06 15:57:05 +08:00
#The folder in which we will build drogon
2018-11-16 15:31:08 +08:00
build_dir='./build'
if [ -d $build_dir ]; then
echo "Deleted folder: ${build_dir}"
2018-11-16 17:26:35 +08:00
rm -rf $build_dir
2018-11-16 15:31:08 +08:00
fi
2019-03-06 15:57:05 +08:00
#Create building folder
2018-11-16 15:31:08 +08:00
echo "Created building folder: ${build_dir}"
2018-11-16 17:26:35 +08:00
mkdir $build_dir
2018-11-16 15:31:08 +08:00
echo "Entering folder: ${build_dir}"
cd $build_dir
echo "Start building drogon ..."
cmake ..
2018-11-16 18:25:41 +08:00
#If errors then exit
2018-11-16 15:31:08 +08:00
if [ "$?" != "0" ]; then
2019-03-26 15:25:22 +08:00
exit -1
2018-11-16 15:31:08 +08:00
fi
make
2018-11-16 18:25:41 +08:00
#If errors then exit
2018-11-16 15:31:08 +08:00
if [ "$?" != "0" ]; then
2019-03-26 15:25:22 +08:00
exit -1
2018-11-16 15:31:08 +08:00
fi
2018-11-16 18:25:41 +08:00
echo "Installing ..."
2018-11-16 15:31:08 +08:00
sudo make install
2019-03-06 15:57:05 +08:00
#Go back to the current directory
2018-11-16 15:31:08 +08:00
cd $current_dir
2018-11-16 18:25:41 +08:00
#Ok!
2018-11-16 15:31:08 +08:00
}
build_drogon