2025-12-17 17:10:59 +01:00

16 lines
319 B
Makefile

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
nix:
nix build path:./#debug -L
clean:
cmake --build build --target clean