From 5221b42f235720f6ffe57faf8cde558400ad9bc3 Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Fri, 20 Feb 2026 01:07:16 -0700 Subject: [PATCH] . --- justfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 8ed12f8..b4d5d04 100644 --- a/justfile +++ b/justfile @@ -1,14 +1,24 @@ -default: +# Compiles the program natively +native: @pwsh do.ps1 build + +# Compiles the program for windows windows: @pwsh do.ps1 build-cross x86_64-windows-gnu +# Compiles the program for linux linux: @pwsh do.ps1 build-cross x86_64-linux-gnu +# Compiles the program to web assembly wasm: @pwsh do.ps1 build-cross wasm32-emscripten +# Cleans build artifacts clean: @pwsh do.ps1 clean + +[private] +default : native +