mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
13 lines
395 B
Bash
13 lines
395 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TARGET=""
|
||
|
|
||
|
while getopts "ai" option
|
||
|
do
|
||
|
case "$option"
|
||
|
in
|
||
|
a) gomobile bind -v -target android -trimpath -ldflags="-s -w" github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||
|
i) gomobile bind -v -target ios -trimpath -ldflags="-s -w" github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||
|
*) echo "No target specified, specify -a or -i"; exit 1 ;;
|
||
|
esac
|
||
|
done
|