This set of applications are used to run various benchmarks of EGT. This is useful for testing different hardware combinations and configurations of EGT itself. The EGT developers use this to find both optimizations and regressions when it comes to performance.
First compile and install libegt to a directory.
git clone --recursive https://github.com/linux4sam/egt.git
cd egt
./autogen.sh
./configure --prefix=/opt/egt
make
make installThen, configure and build this samples project.
git clone --recursive https://github.com/linux4sam/egt-benchmark.git
./autogen.sh
CXXFLAGS="-I/opt/egt/include/" \
LDFLAGS="-L/opt/egt/lib/" \
PKG_CONFIG_PATH=/opt/egt/lib/pkgconfig \
./configure
makeTo run an example, set the LD_LIBRARY_PATH environment variable to the library.
LD_LIBRARY_PATH=/opt/egt/lib ./benchmarkReleased under the terms of the Apache 2 license. See the COPYING
file for more information.
