diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-03-04 15:16:06 +0000 |
---|---|---|
committer | andreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf> | 2014-03-04 15:16:06 +0000 |
commit | df938ff92ea02f26c594c610234754101138f646 (patch) | |
tree | 44627288bdbb469344eeb81c46657da7888c8650 /lib/download_dependencies.sh | |
parent | c543117ff43c63a053ea786ed606398ac4687494 (diff) |
added unit test framework
git-svn-id: file:///var/local/svn/basicwriter@14 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'lib/download_dependencies.sh')
-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 + |