#!/bin/sh
pushd "`dirname $0`" > /dev/null
scriptpath="`pwd`"
popd > /dev/null
. "$scriptpath/include.sh/build-dep.sh"
deps="ctemplate-ios libetpan-ios tidy-html5-ios uchardet-ios"
for dep in $deps ; do
if test ! -d "$scriptpath/../Externals/$dep" ; then
name="$dep"
get_prebuilt_dep
fi
done