0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-14 10:28:24 +02:00
dendrite/build/gobind-pinecone/build.sh
2023-02-03 09:06:03 -07:00

13 lines
380 B
Bash
Executable file

#!/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="" -o ~/DendriteBindings/Gobind.xcframework . ;;
*) echo "No target specified, specify -a or -i"; exit 1 ;;
esac
done