25 lines
650 B
Bash
25 lines
650 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
OS=$(uname -s)
|
|
|
|
echo "Generating bdk.py..."
|
|
cd ../bdk-ffi/
|
|
cargo run --bin uniffi-bindgen generate src/bdk.udl --language python --out-dir ../bdk-python/src/bdkpython/ --no-format
|
|
|
|
echo "Generating native binaries..."
|
|
cargo build --profile release-smaller
|
|
case $OS in
|
|
"Darwin")
|
|
echo "Copying macOS libbdkffi.dylib..."
|
|
cp ../target/release-smaller/libbdkffi.dylib ../bdk-python/src/bdkpython/libbdkffi.dylib
|
|
;;
|
|
"Linux")
|
|
echo "Copying linux libbdkffi.so..."
|
|
cp ../target/release-smaller/libbdkffi.so ../bdk-python/src/bdkpython/libbdkffi.so
|
|
;;
|
|
esac
|
|
cd ../bdk-python/
|
|
|
|
echo "All done!"
|