From a41fe6f605c442e5cb8ab2d92b53e904e5075ca8 Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Fri, 30 Aug 2024 11:22:44 -0300 Subject: [PATCH] docs: update it to use CMake for Bitcoin Core --- docs/examples/bitcoin-core-usage.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/examples/bitcoin-core-usage.rst b/docs/examples/bitcoin-core-usage.rst index 335252006..5114dc228 100644 --- a/docs/examples/bitcoin-core-usage.rst +++ b/docs/examples/bitcoin-core-usage.rst @@ -30,10 +30,9 @@ Clone Bitcoin Core and build it. Clone HWI. $ git clone https://github.com/bitcoin/bitcoin.git $ cd bitcoin - $ ./autogen.sh - $ ./configure - $ make - $ src/bitcoind -daemon -addresstype=bech32 -changetype=bech32 + $ cmake -B build + $ cmake --build build + $ build/src/bitcoind -daemon -addresstype=bech32 -changetype=bech32 $ cd .. $ git clone https://github.com/bitcoin-core/HWI.git $ cd HWI