22 lines
377 B
Makefile
22 lines
377 B
Makefile
set shell := ["powershell.exe", "-NoLogo", "-Command"]
|
|
|
|
python := "python"
|
|
|
|
check:
|
|
cargo check --workspace
|
|
|
|
test:
|
|
cargo test --workspace
|
|
|
|
build-release:
|
|
cargo build --release -p sprimo-app
|
|
|
|
package-win:
|
|
{{python}} scripts/package_windows.py package
|
|
|
|
smoke-win:
|
|
{{python}} scripts/package_windows.py smoke
|
|
|
|
qa-validate:
|
|
{{python}} scripts/qa_validate.py
|