2020-07-03 15:45:59 +00:00
|
|
|
#!/bin/sh
|
2021-04-28 06:06:41 +00:00
|
|
|
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
|
|
|
|
|
2024-09-03 05:37:18 +00:00
|
|
|
cargo b
|
2021-04-28 06:06:41 +00:00
|
|
|
|
|
|
|
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
|
|
|
|
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then
|
|
|
|
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/output/dll"
|
|
|
|
fi
|