blob: 7f015eda84f030d29523052a09b358e0e091744b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
pushd "`dirname "$0"`" > /dev/null
scriptpath="`pwd`"
popd > /dev/null
. "$scriptpath/include.sh/build-dep.sh"
deps="ctemplate-osx libetpan-osx"
for dep in $deps ; do
name="$dep"
get_prebuilt_dep
done
if test "x$CONFIGURATION_BUILD_DIR" != x ; then
mkdir -p "$CONFIGURATION_BUILD_DIR"
cd "$scriptpath/../Externals"
for dep in $deps ; do
if test -d "$dep" ; then
if test -d "$dep"/lib ; then
rsync -a "$dep"/lib/ "$CONFIGURATION_BUILD_DIR"
fi
if test -d "$dep"/include ; then
rsync -a "$dep"/include/ "$CONFIGURATION_BUILD_DIR/include/"
fi
fi
done
fi
|