Files
pubky-core-ffi/build.sh
coreyphillips d45279df02 refactor: update naming convention
Updates naming convention to pubkycore throughout project.
Updated bindings accordingly.
Added python bindings.
2024-10-29 18:41:19 -04:00

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