view resources/tests/make_tests.sh @ 133:04b1678614c9 scope-refactoring

Using moving average for clock detection during synchronization seems to be working better but audio gets worse and worse
author Giulio Moro <giuliomoro@yahoo.it>
date Thu, 27 Aug 2015 03:33:32 +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