Basic Nimble and Makefile import

This commit is contained in:
Oskar Thoren 2020-04-28 14:07:27 +08:00
parent 2f290d95d6
commit 39cafde372
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
2 changed files with 21 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
all: wakunode start_network quicksim
start_network: waku/start_network.nim
nim c --threads:on -o:build/start_network waku/start_network.nim
quicksim: waku/quicksim.nim
nim c --threads:on -o:build/quicksim waku/quicksim.nim
wakunode: waku/wakunode.nim
nim c --threads:on -o:build/wakunode waku/wakunode.nim

11
nim-waku.nimble Normal file
View File

@ -0,0 +1,11 @@
# Package
version = "0.1.0"
author = "Status Research & Development GmbH"
description = "Waku, Private P2P Messaging for Resource-Rerestricted Devices"
license = "MIT"
srcDir = "src"
#bin = @["build/waku"]
# Dependencies
requires "nim >= 1.2.0"