kirigami-testing/.justfile
2025-03-14 20:26:05 +01:00

16 lines
301 B
Makefile

# Hide the default option from the recipes list
_default:
@just --list
setup:
cmake -B build/ --install-prefix ~/.local -DCMAKE_EXPORT_COMPILE_COMMANDS=1
build:
cmake --build build/ -j `nproc`
install:
cmake --install build/
uninstall:
cmake --build build/ --target uninstall