Files
SortLab/justfile
T
2026-03-06 19:17:09 +03:00

17 lines
273 B
Makefile

set windows-shell := ["cmd", "/c"]
default:
just --list
build:
powershell -ExecutionPolicy Bypass -File setup.ps1
rebuild: clean
powershell -ExecutionPolicy Bypass -File setup.ps1
run:
.\\build\\SortLab.exe
clean:
if exist build rmdir /s /q build