We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9abe5 commit 6f95d51Copy full SHA for 6f95d51
README.md
@@ -31,3 +31,17 @@ Follow these steps to install and set up the module:
31
```
32
33
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