mirror of
https://github.com/koloideal/SortLab.git
synced 2026-06-10 10:25:30 +03:00
17 lines
273 B
Makefile
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
|