chore: improve package structure (#20)

This commit is contained in:
gabrielmer 2025-01-22 18:58:23 +01:00 committed by GitHub
parent d517abc07b
commit db4348d311
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ Follow these steps to install and set up the module:
```
3. Build the dependencies:
```
sudo make
sudo make -C waku
```
Now the module is ready for use in your project.

View File

@ -1,7 +1,7 @@
# Makefile for Waku Go Bindings
# Directories
THIRD_PARTY_DIR := third_party
THIRD_PARTY_DIR := ../third_party
NWAKU_REPO := https://github.com/waku-org/nwaku
NWAKU_DIR := $(THIRD_PARTY_DIR)/nwaku
@ -29,7 +29,7 @@ prepare:
# Build Waku Go Bindings
build: prepare
@echo "Building Waku Go Bindings..."
go build ./waku/...
go build ./...
# Clean up generated files
clean: