From 6d689cb9b3855b02133da3536d0de04cd5487de6 Mon Sep 17 00:00:00 2001 From: SEK1RO Date: Thu, 26 Sep 2024 12:26:07 +0300 Subject: [PATCH] fix(README.md): coverage --- README.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index bd72246..8d9b0fe 100644 --- a/README.md +++ b/README.md @@ -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)