A game about bouncing blaster bolts off walls.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash |
|
|
|
mkdir -p dist-win64 |
|
|
|
cp -rf data dist-win64/data |
|
cargo build --release --target x86_64-pc-windows-gnu |
|
cp target/x86_64-pc-windows-gnu/release/robot-ricochet.exe dist-win64/robot-ricochet.exe |
|
|
|
cp /usr/x86_64-w64-mingw32/sys-root/mingw/bin/*.dll dist-win64/
|
|
|