From 64682a079cb2636a633b9ecd9a294bb71ab8b09c Mon Sep 17 00:00:00 2001 From: Bharathi Chandrasekaran Date: Thu, 2 Nov 2023 15:51:48 +0000 Subject: [PATCH] Update README.md - Build Peerplays in build sub-directory. --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cff50dc3..4ef37408 100644 --- a/README.md +++ b/README.md @@ -114,10 +114,14 @@ cd peerplays git submodule update --init --recursive # If you want to build Mainnet node -cmake -DCMAKE_BUILD_TYPE=Release +mkdir build +cd build +cmake -DCMAKE_BUILD_TYPE=Release .. # If you want to build Testnet node -cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_PEERPLAYS_TESTNET=1 +mkdir build-testnet +cd build-testnet +cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_PEERPLAYS_TESTNET=1 .. # Update -j flag depending on your current system specs; # Recommended 4GB of RAM per 1 CPU core -- 2.45.2