encfs/vendor/github.com/muflihun/easyloggingpp/samples/gtkmm/build_all.sh

16 lines
241 B
Bash
Raw Normal View History

# Builds all files into bin/
[ -d "bin" ] || mkdir "bin"
rm -rf bin/*
find . -maxdepth 1 -type f -name '*.cpp' -exec sh compile.sh {} $1 \;
echo "Completed!"
files=$(ls -l bin/)
if [ "$files" = "total 0" ];then
exit 1
else
exit 0
fi