From 0f0c383983b8253ef44ad07109efadce1665e635 Mon Sep 17 00:00:00 2001 From: j-berman Date: Wed, 1 Sep 2021 23:39:03 -0700 Subject: [PATCH 1/2] Add cryptonote_format_utils_basic lib intro'd in v17.2.3 - https://github.com/monero-project/monero/pull/7693/commits/ceb8e7c508042a4ad7bddd8fd205d44d486a1a17 - added gitignore --- .gitignore | 1 + CMakeLists.txt | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index b4e38a0..b18b7a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,7 @@ set(MONERO_LIBRARIES net cryptonote_core cryptonote_basic + cryptonote_format_utils_basic ringct ringct_basic multisig @@ -67,6 +68,7 @@ set(MONERO_SEARCH_PATHS "/src" "/src/crypto" "/src/crypto/wallet" + "/src/cryptonote_basic" "/src/lmdb" "/src/ringct" "/src/rpc" From e9f5b771a432388cb4e8fb475abbd9310d520955 Mon Sep 17 00:00:00 2001 From: Justin Berman Date: Thu, 2 Sep 2021 12:28:53 -0700 Subject: [PATCH 2/2] Add trailing newline to .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 42afabf..796b96d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/build \ No newline at end of file +/build