From d117e4414764ddef679a02972b54080993d2c0f9 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Tue, 28 Apr 2020 14:07:27 +0800 Subject: [PATCH] Basic Nimble and Makefile import --- Makefile | 10 ++++++++++ nim-waku.nimble | 11 +++++++++++ 2 files changed, 21 insertions(+) create mode 100644 Makefile create mode 100644 nim-waku.nimble diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..a5639b664 --- /dev/null +++ b/Makefile @@ -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 diff --git a/nim-waku.nimble b/nim-waku.nimble new file mode 100644 index 000000000..13483875a --- /dev/null +++ b/nim-waku.nimble @@ -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"