From fe22d3954ab57aab5016a7aa3d0f237c15094726 Mon Sep 17 00:00:00 2001 From: Nova Date: Mon, 7 Oct 2024 21:02:40 -0400 Subject: [PATCH] feat: justfile --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..36f9336 --- /dev/null +++ b/justfile @@ -0,0 +1,9 @@ + PREFIX := "usr" +BINARY := PREFIX / "bin" +DESTDIR := "/" + +build: + cargo build --release + +install: + install -Dm755 target/release/stardust-xr-server {{ DESTDIR }}{{ BINARY }}/stardust-xr-server