From 1858696d1077589c5218415cb617cc0b5dc69195 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Thu, 18 Dec 2025 10:32:52 +0100 Subject: [PATCH] Minor fixes justfile --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 024b63e..cd732de 100644 --- a/justfile +++ b/justfile @@ -3,7 +3,7 @@ default: # Configure the build directory (run this once, or whenever CMake config changes) configure: - cmake -S . -B build -G "Unix Makefiles" + cmake -S . -B build build: cmake --build build --parallel --target blockchainmodulelib @@ -13,3 +13,4 @@ nix: clean: cmake --build build --target clean + rm libblockchainmodulelib.so || true