Add justfile.

This commit is contained in:
Alejandro Cabeza Romero 2025-12-17 12:15:17 +01:00
parent a4f8fbc4ff
commit f40795aa8e
No known key found for this signature in database
GPG Key ID: DA3D14AE478030FD

12
justfile Normal file
View File

@ -0,0 +1,12 @@
default:
just build
# Configure the build directory (run this once, or whenever CMake config changes)
configure:
cmake -S . -B build -G "Unix Makefiles"
build:
cmake --build build --parallel --target blockchainmodulelib
clean:
cmake --build build --target clean