This commit is contained in:
Bufo 2025-04-29 11:52:14 +02:00 committed by GitHub
commit 0497131132
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,8 +7,15 @@ Some notes on how to build Bitcoin Core in Unix.
To Build
---------------------
### 1. Configuration
```bash
cmake -B build
```
Run `cmake -B build -LH` to see the full list of available options.
### 2. Compile
```
cmake --build build # use "-j N" for N parallel jobs
cmake --install build # optional
```