summaryrefslogtreecommitdiff
path: root/lib/download_dependencies.sh
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2014-12-20 15:48:25 +0100
committerAndreas Stöckel <andreas@somweyr.de>2014-12-20 15:48:25 +0100
commit55b860964cb752b920d415c4332da85a97abd087 (patch)
treeb74a67595255f7e7d9f9e1e1febcb9743273d30f /lib/download_dependencies.sh
parent04248309bdedb58be2fe1aa1fad0342ac936b541 (diff)
added small utf8cpp library for encoding unicode characters as UTF8, updated download_dependencies.sh
Diffstat (limited to 'lib/download_dependencies.sh')
-rwxr-xr-xlib/download_dependencies.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/download_dependencies.sh b/lib/download_dependencies.sh
index 369c514..8217dd7 100755
--- a/lib/download_dependencies.sh
+++ b/lib/download_dependencies.sh
@@ -1,6 +1,12 @@
#!/bin/sh
# Download and unzip googletest
-wget https://googletest.googlecode.com/files/gtest-1.7.0.zip
-unzip gtest-1.7.0.zip
+if [ ! -e gtest-1.7.0.zip ]; then
+ wget https://googletest.googlecode.com/files/gtest-1.7.0.zip
+ unzip gtest-1.7.0.zip
+fi
+# Download utf8-cpp (header only library)
+if [ ! -e utf8cpp ]; then
+ svn checkout svn://svn.code.sf.net/p/utfcpp/code/v2_0/source utf8cpp
+fi