From 6f95d51df46cf8bfa9f64df18690f3a322917b68 Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Thu, 13 Mar 2025 15:22:58 +0200 Subject: [PATCH] chore: updating README (#52) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index d4adc8b..8759e0c 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,17 @@ Follow these steps to install and set up the module: ``` Now the module is ready for use in your project. + +### Note + +In order to easily build the libwaku library on demand, it is recommended to add the following target in your project's Makefile: + +``` +LIBWAKU_DEP_PATH=$(shell go list -m -f '{{.Dir}}' github.com/waku-org/waku-go-bindings) + +buildlib: + cd $(LIBWAKU_DEP_PATH) &&\ + sudo mkdir -p third_party &&\ + sudo chown $(USER) third_party &&\ + make -C waku +```