mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 17:33:19 +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
37 lines
748 B
Bash
Executable File
37 lines
748 B
Bash
Executable File
## Helper script for build_all.sh
|
|
|
|
FILE=$1
|
|
|
|
macro="$macro -DELPP_THREAD_SAFE"
|
|
macro="$macro -DELPP_STL_LOGGING"
|
|
macro="$macro -DELPP_LOG_STD_ARRAY"
|
|
macro="$macro -DELPP_LOG_UNORDERED_SET"
|
|
macro="$macro -DELPP_LOG_UNORDERED_MAP"
|
|
macro="$macro -DELPP_FEATURE_CRASH_LOG"
|
|
macro="$macro -DELPP_FEATURE_ALL"
|
|
|
|
if [ "$2" = "" ];then
|
|
COMPILER=g++
|
|
else
|
|
COMPILER=$2
|
|
fi
|
|
|
|
CXX_STD='-std=c++0x -pthread'
|
|
|
|
if [ "$FILE" = "" ]; then
|
|
echo "Please provide filename to compile"
|
|
exit
|
|
fi
|
|
|
|
echo "Compiling... [$FILE]"
|
|
|
|
COMPILE_LINE="$COMPILER $FILE easylogging++.cc -o bin/$FILE.bin $macro $CXX_STD -Wall -Wextra -lglut -lGLU -lGL -I/usr/include/x86_64-linux-gnu/c++/4.7/"
|
|
|
|
echo " $COMPILE_LINE"
|
|
|
|
$($COMPILE_LINE)
|
|
|
|
echo " DONE! [./bin/$FILE.bin]"
|
|
echo
|
|
echo
|