lumina/justfile
Chris Cochrun a1f18f803d things are building and running now
Now for all the issues of things not working
2024-09-15 06:08:24 -05:00

18 lines
365 B
Makefile

default:
just --list
build:
cmake -DCMAKE_BUILD_TYPE=Debug -B bld/ .
make -j8 --dir bld/
rm -rf ~/.cache/lumina/lumina/qmlcache/
run:
RUST_LOG=debug ./bld/bin/lumina
lint:
cargo clippy
clean:
cargo clean
rm -rf bld/
test:
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture
alias b := build
alias r := run