Add justfile
This commit is contained in:
parent
a009fc3566
commit
e7357da3f3
2 changed files with 17 additions and 0 deletions
16
.justfile
Normal file
16
.justfile
Normal 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
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
with pkgs; [
|
with pkgs; [
|
||||||
clang-tools
|
clang-tools
|
||||||
cmake
|
cmake
|
||||||
|
just
|
||||||
] ++ kdeDeps;
|
] ++ kdeDeps;
|
||||||
|
|
||||||
# QMLLS_BUILD_DIRS = "${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:";
|
# QMLLS_BUILD_DIRS = "${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue