mirror of
https://github.com/logos-blockchain/logos-blockchain-module.git
synced 2026-01-02 13:13:06 +00:00
17 lines
340 B
Makefile
17 lines
340 B
Makefile
default:
|
|
just build
|
|
|
|
# Configure the build directory (run this once, or whenever CMake config changes)
|
|
configure:
|
|
cmake -S . -B build
|
|
|
|
build:
|
|
cmake --build build --parallel --target blockchainmodulelib
|
|
|
|
nix:
|
|
nix build path:./#debug -L
|
|
|
|
clean:
|
|
cmake --build build --target clean
|
|
rm libblockchainmodulelib.so || true
|