Skip to content

Commit 6f95d51

Browse files
authoredMar 13, 2025
chore: updating README (#52)
1 parent ec9abe5 commit 6f95d51

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎README.md

+14
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,17 @@ Follow these steps to install and set up the module:
3131
```
3232

3333
Now the module is ready for use in your project.
34+
35+
### Note
36+
37+
In order to easily build the libwaku library on demand, it is recommended to add the following target in your project's Makefile:
38+
39+
```
40+
LIBWAKU_DEP_PATH=$(shell go list -m -f '{{.Dir}}' github.com/waku-org/waku-go-bindings)
41+
42+
buildlib:
43+
cd $(LIBWAKU_DEP_PATH) &&\
44+
sudo mkdir -p third_party &&\
45+
sudo chown $(USER) third_party &&\
46+
make -C waku
47+
```

0 commit comments

Comments
 (0)
Please sign in to comment.