fix(README.md): coverage

This commit is contained in:
2024-09-26 12:26:07 +03:00
parent 119bca6c87
commit 6d689cb9b3

View File

@ -30,18 +30,6 @@ Uninstall:
```
sudo make uni USRDIR=(Your installation dir)
```
For build with with debug flags:
```
make -j $(nproc) DEBUG=
```
For build tests (needed gtest package as dependency):
```
make tests -j $(nproc) DEBUG=
```
And also flag for dynamic linking (if possible):
```
make tools -j $(nproc) SHARED=
```
## Documentation
@ -56,4 +44,17 @@ Now we would like to implement the following features:
- BCH
- Bech32
For build with with debug flags:
```
make -j $(nproc) DEBUG=
```
For build tests (needed gtest package as dependency):
```
make tests -j $(nproc) DEBUG=
```
For generating coverage:
```
make cover -j $(nproc) DEBUG=
```
[⬆️ Contents](#contents)