Add justfile

This commit is contained in:
Toast 2025-03-14 20:26:05 +01:00
parent a009fc3566
commit e7357da3f3
2 changed files with 17 additions and 0 deletions

16
.justfile Normal file
View file

@ -0,0 +1,16 @@
# 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

View file

@ -26,6 +26,7 @@
with pkgs; [
clang-tools
cmake
just
] ++ kdeDeps;
# QMLLS_BUILD_DIRS = "${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:";