mirror of
https://github.com/vgough/encfs.git
synced 2024-12-22 06:30:48 +01:00
29 lines
503 B
Bash
29 lines
503 B
Bash
|
## Helper script for build_all.sh
|
||
|
|
||
|
FILE=$1
|
||
|
|
||
|
if [ "$2" = "" ];then
|
||
|
COMPILER=g++
|
||
|
else
|
||
|
COMPILER=$2
|
||
|
fi
|
||
|
|
||
|
CXX_STD='-std=c++11'
|
||
|
|
||
|
if [ "$FILE" = "" ]; then
|
||
|
echo "Please provide filename to compile"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo "Compiling... [$FILE]"
|
||
|
|
||
|
COMPILE_LINE="$COMPILER $FILE easylogging++.cc -o bin/$FILE.bin $CXX_STD -std=c++11 -pthread -I /opt/local/include -L/opt/local/lib -lboost_system -Wno-deprecated-declarations"
|
||
|
|
||
|
echo " $COMPILE_LINE"
|
||
|
|
||
|
$($COMPILE_LINE)
|
||
|
|
||
|
echo " DONE! [./bin/$FILE.bin]"
|
||
|
echo
|
||
|
echo
|