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