mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
build-system: enhanced get-dep-lib with "single"
Added the posibility to fetch a single third lib. Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
6d3637fce0
commit
1ed8c87d63
1 changed files with 11 additions and 3 deletions
|
@ -17,11 +17,16 @@ CURRENT_LIBFTDI="1.3"
|
|||
|
||||
|
||||
# deal with all the command line arguments
|
||||
if [ $# -ne 2 ] ; then
|
||||
if [[ $# -ne 2 && $# -ne 3 ]] ; then
|
||||
echo "wrong number of parameters, format:"
|
||||
echo "get-dep-lib <platform> <install dir>"
|
||||
echo "where platform is one of scripts, ios or android"
|
||||
echo "get-dep-lib.sh <platform> <install dir>"
|
||||
echo "or"
|
||||
echo "get-dep-lib.sh single <install dir> <lib>"
|
||||
echo "where"
|
||||
echo "<platform> is one of scripts, ios or android"
|
||||
echo "(the name of the directory where build.sh resides)"
|
||||
echo "<install dir> is the directory to clone in"
|
||||
echo "<lib> is the name to be cloned"
|
||||
exit -1
|
||||
fi
|
||||
|
||||
|
@ -42,6 +47,9 @@ case ${PLATFORM} in
|
|||
android)
|
||||
BUILD="libzip libgit2 googlemaps libxslt sqlite libxml2 openssl libftdi libusb"
|
||||
;;
|
||||
single)
|
||||
BUILD="$3"
|
||||
;;
|
||||
*)
|
||||
echo "Unknown platform ${PLATFORM}, choose between native, ios or android"
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue