nimbus-eth1/nimbus.nimble

39 lines
999 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", "examples"]
2018-06-20 11:12:29 +00:00
bin = @["nimbus/nimbus"]
requires "nim >= 0.18.1",
2018-05-28 10:22:28 +00:00
"nimcrypto",
"rlp",
"stint",
"rocksdb",
"eth_trie",
"eth_common",
"json_rpc",
"asyncdispatch2",
2018-06-16 19:14:31 +00:00
"eth_p2p",
"eth_keyfile",
"eth_keys",
"https://github.com/status-im/nim-bncurve"
2018-01-30 10:51:13 +00:00
proc buildBinary(name: string, srcDir = ".", lang = "c") =
if not dirExists "build": mkDir "build"
switch("out", ("./build/" & name))
setCommand lang, srcDir & name & ".nim"
proc test(name: string, lang = "c") =
buildBinary name, "tests/"
--run
task test, "Run tests":
test "all_tests"
task nimbus, "Build Nimbus":
buildBinary "nimbus", "nimbus/"