nimbus-eth1/nimbus.nimble

30 lines
818 B
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
packageName = "nimbus"
version = "0.1.0"
author = "Status Research & Development GmbH"
description = "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices"
license = "Apache License 2.0"
skipDirs = @["tests"]
requires "nim >= 0.18.1",
2018-05-28 10:22:28 +00:00
"nimcrypto",
"rlp",
"stint",
2018-05-30 16:11:15 +00:00
"https://github.com/status-im/nim-eth-common",
"https://github.com/status-im/nim-eth-p2p",
"https://github.com/status-im/nim-eth-keyfile"
2018-01-30 10:51:13 +00:00
proc test(name: string, lang = "c") =
if not dirExists "build":
mkDir "build"
if not dirExists "nimcache":
mkDir "nimcache"
--run
--nimcache: "nimcache"
switch("out", ("./build/" & name))
setCommand lang, "tests/" & name & ".nim"
task test, "Run tests":
test "all_tests"