2018-01-22 22:23:07 +00:00
|
|
|
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"
|
2018-06-19 19:17:20 +00:00
|
|
|
skipDirs = @["tests", "examples"]
|
2018-06-20 11:12:29 +00:00
|
|
|
bin = @["nimbus/nimbus"]
|
2018-01-22 22:23:07 +00:00
|
|
|
|
2018-04-03 16:09:09 +00:00
|
|
|
requires "nim >= 0.18.1",
|
2018-05-28 10:22:28 +00:00
|
|
|
"nimcrypto",
|
|
|
|
"rlp",
|
|
|
|
"stint",
|
2018-06-24 15:39:03 +00:00
|
|
|
"rocksdb",
|
|
|
|
"eth_trie",
|
2018-05-30 16:11:15 +00:00
|
|
|
"https://github.com/status-im/nim-eth-common",
|
2018-07-20 17:02:19 +00:00
|
|
|
"json_rpc",
|
2018-06-20 17:36:03 +00:00
|
|
|
"https://github.com/status-im/nim-asyncdispatch2",
|
2018-06-16 19:14:31 +00:00
|
|
|
"eth_p2p",
|
2018-07-20 17:02:19 +00:00
|
|
|
"eth_keyfile",
|
|
|
|
"eth_keys"
|
2018-01-30 10:51:13 +00:00
|
|
|
|
2018-05-07 12:41:54 +00:00
|
|
|
proc test(name: string, lang = "c") =
|
2018-04-03 16:09:09 +00:00
|
|
|
if not dirExists "build":
|
|
|
|
mkDir "build"
|
|
|
|
if not dirExists "nimcache":
|
|
|
|
mkDir "nimcache"
|
|
|
|
--run
|
|
|
|
--nimcache: "nimcache"
|
|
|
|
switch("out", ("./build/" & name))
|
2018-08-20 14:13:32 +00:00
|
|
|
switch("experimental", "ForLoopMacros")
|
2018-04-03 16:09:09 +00:00
|
|
|
setCommand lang, "tests/" & name & ".nim"
|
2018-01-29 17:40:22 +00:00
|
|
|
|
2018-04-03 16:09:09 +00:00
|
|
|
task test, "Run tests":
|
|
|
|
test "all_tests"
|