Pthread lib apparently needed for gtest

This commit is contained in:
Cruel
2014-02-06 23:32:54 -05:00
parent c3a8929446
commit be37a46090
+1 -1
View File
@@ -1,5 +1,5 @@
echo "Compiling unit tests..."
g++ main.cpp -lgtest -o test
g++ main.cpp -lgtest -lpthread -o test
echo "Running unit tests..."
./test -v
result=$?