mirror of
https://github.com/encounter/cpp3ds.git
synced 2026-03-30 11:04:22 -07:00
7 lines
300 B
Bash
Executable File
7 lines
300 B
Bash
Executable File
echo "Compiling unit tests..."
|
|
g++ main.cpp -o test -L../lib -I../include -L../../tween-engine/lib -I../../tween-engine/include -std=c++11 -lgtest -lpthread -lcpp3ds-test -ltween-test -DTESTING
|
|
echo "Running unit tests..."
|
|
./test -v
|
|
result=$?
|
|
echo "Unit tests completed. Result: $result"
|
|
exit $result |