encfs/vendor/github.com/muflihun/easyloggingpp/samples/send-to-network/compile.sh
Valient Gough 5f0806c5cc Add "easylogging" from "https://github.com/muflihun/easyloggingpp@master"
git-vendor-name: easylogging
git-vendor-dir: vendor/github.com/muflihun/easyloggingpp
git-vendor-repository: https://github.com/muflihun/easyloggingpp
git-vendor-ref: master
2017-08-05 23:23:41 -07:00

29 lines
503 B
Bash
Executable File

## 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