mirror of
https://github.com/aljazceru/pubky-core-ffi.git
synced 2025-12-17 06:14:21 +01:00
Updates naming convention to pubkycore throughout project. Updated bindings accordingly. Added python bindings.
21 lines
315 B
Bash
Executable File
21 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Save as build.sh
|
|
case "$1" in
|
|
"ios")
|
|
./build_ios.sh
|
|
;;
|
|
"android")
|
|
./build_android.sh
|
|
;;
|
|
"python")
|
|
./build_python.sh
|
|
;;
|
|
"all")
|
|
./build_ios.sh && ./build_android.sh && ./build_python.sh
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {ios|android|python|all}"
|
|
exit 1
|
|
;;
|
|
esac |