mirror of
https://github.com/vgough/encfs.git
synced 2024-11-29 03:15:07 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
29 lines
503 B
Bash
Executable File
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
|