Files
swift-hpa/justfile
2024-11-29 14:30:52 -05:00

16 lines
155 B
Makefile

build mode="debug":
swift build -c {{mode}}
alias b := build
test:
swift test
alias t := test
run *ARGS:
swift run hpa {{ARGS}}
alias r := run