From a4ec7c7c6be42cb47959fb10aeaccb4fbf71c6ae 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