Space Ship Collector Game - A space trading and collector game written in Rust
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.
 
 
 
 
 
 

8 lines
240 B

cd godot_bind
if cargo build --release; then
rm ../godot_project/gdnative/libsscg_gd.so
cp -v target/release/libsscg_gd.so ../godot_project/gdnative/
cd ../godot_project/
../Godot_v3.2.2-stable_x11.64 project.godot
fi
cd ..