lumina-iced/justfile

19 lines
412 B
Makefile

ui := "-i"
file := "~/dev/lumina-iced/test_presentation.lisp"
default:
just --list
build:
RUST_LOG=debug cargo build
run:
RUST_LOG=debug cargo run --release -- {{ui}} {{file}}
clean:
RUST_LOG=debug cargo clean
test:
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture
profile:
cargo flamegraph --image-width 4000 -- {{ui}} {{file}}
alias r := run
alias c := clean