Blame build.sh

c47604
#!/bin/bash
c47604
c47604
set -e
c47604
0f653b
OPTS="-Ideps -Ldeps/cryptopp -lcryptopp"
0f653b
c47604
if [ "$1" = "debug" ]; then
0f653b
	c++ -Wall -g -O0 *.cpp $OPTS -o icetunnel2-debug
c47604
else
0f653b
	c++ -Wall -DNDEBUG -O3 *.cpp $OPTS -o icetunnel2
c47604
fi
c47604
c47604
c47604