.
This commit is contained in:
parent
b84969d109
commit
5221b42f23
1 changed files with 11 additions and 1 deletions
12
justfile
12
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue