lumina/justfile
2024-01-23 14:47:01 -06:00

15 lines
No EOL
331 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