diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/download_dependencies.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/download_dependencies.sh b/lib/download_dependencies.sh new file mode 100755 index 0000000..369c514 --- /dev/null +++ b/lib/download_dependencies.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +# Download and unzip googletest +wget https://googletest.googlecode.com/files/gtest-1.7.0.zip +unzip gtest-1.7.0.zip + |