Add justfile

This commit is contained in:
Melody Becker 2025-03-19 15:16:08 +01:00
parent b86c37a3b3
commit 64210b1983

12
Justfile Normal file
View file

@ -0,0 +1,12 @@
default:
@just --list
build-rust:
cd rust && cargo build
run-godot:
cd learning-rust4.4 && ~/Software/Godot_v4.4-stable_linux.x86_64 .
run:
@just build-rust
@just run-godot