From 64210b19831c746b39341c3115f89d56f43852b6 Mon Sep 17 00:00:00 2001 From: mstar Date: Wed, 19 Mar 2025 15:16:08 +0100 Subject: [PATCH] Add justfile --- Justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..b761891 --- /dev/null +++ b/Justfile @@ -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