Add a script to retrieve and build gmock.

This commit is contained in:
Joe Thornber 2013-03-22 10:06:31 +00:00
parent 52f1aa8a8a
commit a560e672b9
1 changed files with 8 additions and 0 deletions

8
get-gmock.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh -e
wget https://googlemock.googlecode.com/files/gmock-1.6.0.zip
unzip gmock-1.6.0.zip
cd gmock-1.6.0
./configure
make
make check