~imalinovskiy/rdm/0.8

« back to all changes in this revision

Viewing changes to 3rdparty/easyloggingpp/samples/wxWidgets/build_all.sh

  • Committer: RDM Bot
  • Date: 2016-02-04 11:29:17 UTC
  • Revision ID: git-v1:92436de8ed24fe0a57651f4a61caba27995ad55b
Pull updates from https://github.com/uglide/RedisDesktopManager

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Builds all files into bin/
 
3
 
 
4
[ -d "bin" ] || mkdir "bin"
 
5
rm -rf bin/*
 
6
 
 
7
find -maxdepth 1 -type f -name '*.cpp' -exec sh compile.sh {} $1 \;
 
8
echo "Completed!"
 
9
 
 
10
files=$(ls -l bin/)
 
11
if [ "$files" = "total 0" ];then
 
12
  exit 1
 
13
else
 
14
  exit 0
 
15
fi