mirror of
https://github.com/logos-blockchain/logos-blockchain-module.git
synced 2026-01-04 22:23:09 +00:00
16 lines
319 B
Makefile
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
|