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"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2018-04-03 16:09:09 +00:00
|
|
|
requires "nim >= 0.18.1",
|
2018-04-11 14:32:19 +00:00
|
|
|
"https://github.com/cheatfate/nimcrypto#master",
|
2018-04-03 16:09:09 +00:00
|
|
|
"https://github.com/alehander42/nim-rlp#fix-ordinal", #TODO switching to the Status repo throws: "Error: undeclared identifier: 'Range'"
|
|
|
|
"https://github.com/status-im/nim-ttmath#master"
|
2018-01-30 10:51:13 +00:00
|
|
|
|
2018-04-03 16:09:09 +00:00
|
|
|
proc test(name: string, lang = "cpp") =
|
|
|
|
if not dirExists "build":
|
|
|
|
mkDir "build"
|
|
|
|
if not dirExists "nimcache":
|
|
|
|
mkDir "nimcache"
|
|
|
|
--run
|
|
|
|
--nimcache: "nimcache"
|
|
|
|
switch("out", ("./build/" & name))
|
|
|
|
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"
|