lumina/justfile
2023-11-27 11:07:55 -06:00

13 lines
No EOL
265 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
clean:
cargo clean
rm -rf bld/