Mercurial > hg > beaglert
view resources/tests/make_tests.sh @ 115:a0e24514fc97 scope-refactoring
there was a stray timestamp left there ..:
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 19 Aug 2015 23:14:37 +0100 |
parents | f5b5c648cd5d |
children |
line wrap: on
line source
#!/bin/bash mkdir -p build mkdir -p bin g++ -o build/UdpServer.o -O2 -c ../../core/UdpServer.cpp &&\ g++ -O2 -o build/UdpClient.o -c ../../core/UdpClient.cpp && \ g++ -O2 -o build/UdpClientUdpServerTest.o -c UdpClientUdpServerTest.cpp && \ g++ -o bin/UdpClientUdpServerTest build/UdpClientUdpServerTest.o build/UdpClient.o build/UdpServer.o