diff options
author | Hector Dearman <hector.dearman@gmail.com> | 2023-08-25 08:43:56 +0100 |
---|---|---|
committer | Hector Dearman <hector.dearman@gmail.com> | 2023-08-27 22:52:25 +0100 |
commit | f4635552e097c295d4ea9a9f29931efbe7c68cb8 (patch) | |
tree | caeebe5df511df4352635ff6700b255df0da8f7b /CONTRIBUTING.md | |
parent | c645ee10ccc9bebc90e68b1b148ce554e07736fb (diff) | |
download | fork-ledger-f4635552e097c295d4ea9a9f29931efbe7c68cb8.tar.gz fork-ledger-f4635552e097c295d4ea9a9f29931efbe7c68cb8.tar.bz2 fork-ledger-f4635552e097c295d4ea9a9f29931efbe7c68cb8.zip |
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]
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
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 |