chore: updating README

This commit is contained in:
Gabriel mermelstein 2025-03-12 11:54:52 +02:00
parent 8051e17fab
commit 9b542db0cd
No known key found for this signature in database
GPG Key ID: 82B8134785FEAE0D

View File

@ -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 to your project:
```
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
```