From f4635552e097c295d4ea9a9f29931efbe7c68cb8 Mon Sep 17 00:00:00 2001 From: Hector Dearman Date: Fri, 25 Aug 2023 08:43:56 +0100 Subject: update CONTRIBUTING.md for multiple output directories The `CONTRIBUTING.md` instructions imply you should run `acprep` then `cd` into `build` and run `make`/`ninja`, but `acprep` doesn't generate the make file in `build` but in a subdirectory depending on the configuration selected,`build/ledger/debug` by default or `build/ledger/opt` if you pass `opt` for example. Updeate the instructions to take this into account so people aren't confused the first time they try to build the project. [ci-skip] --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CONTRIBUTING.md') diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d50f8f4c..21a430bd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -99,7 +99,7 @@ or `g++` as follows: mkdir build ./acprep --compiler=clang++ - cd build + cd build/ledger/debug make This will set up a debug build using clang++ (and pre-compiled headers, which @@ -111,7 +111,7 @@ cores: mkdir build ./acprep --compiler=clang++ --ninja - cd build + cd build/ledger/debug ninja [Boost]: http://boost.org -- cgit v1.2.3