lumina/justfile
2023-11-18 06:43:47 -06:00

10 lines
227 B
Makefile

default:
just --list
build:
cmake -DCMAKE_BUILD_TYPE=Debug -B bld/ .
make -j8 --dir bld/
rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/
run:
RUST_LOG=debug ./bld/bin/lumina
lint:
cargo clippy