lumina/justfile
2026-02-02 19:33:46 -06:00

30 lines
551 B
Makefile

ui := "-i"
file := "~/dev/lumina-iced/test_presentation.lisp"
export RUSTC_WRAPPER := "sccache"
export RUST_LOG := "debug"
default:
just --list
build:
cargo build
sbuild:
sccache cargo build
run:
cargo run -- {{ui}}
run-release:
cargo run --release -- {{ui}}
run-file:
cargo run -- {{ui}} {{file}}
clean:
cargo clean
test:
cargo test --benches --tests --all-features -- --nocapture
profile:
cargo flamegraph -- {{ui}}
alias b := build
alias r := run
alias rr := run-release
alias rf := run-file
alias c := clean