nimbus-eth1/nimbus.nimble
Ștefan Talpalaru ede45648e7 Premix-related changes
- build all tools using the Makefile and place them in ./build
- add copyright header to Makefile
- premix/readme.md edited to fix some errors, improve descriptions and
  document Makefile usage
- link the Premix documentation in the main README.md
- also build `hunter` in the nimble tests
- refactored the file and directory search so all debugging tools can be run
  from the top-level dir like this: `./build/<tool> ...`
- write all JSON debugging data in the current directory
- add JSON files generated in the top-level dir to .gitignore
- Nimbus now exits with an exception after dumping debug data and
  running `premix` on it
2019-01-28 12:38:23 +02:00

51 lines
1.3 KiB
Nim

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"]
# we can't have the result of a custom task in the "bin" var - https://github.com/nim-lang/nimble/issues/542
# bin = @["build/nimbus"]
requires "nim >= 0.18.1",
"chronicles",
"nimcrypto",
"rlp",
"stint",
"rocksdb",
"eth_trie",
"eth_common",
"json_rpc",
"asyncdispatch2",
"eth_p2p",
"eth_keyfile",
"eth_keys",
"eth_bloom",
"bncurve"
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") =
--define:"chronicles_log_level=ERROR"
--run
buildBinary name, "tests/"
task test, "Run tests":
test "all_tests"
# debugging tools don't yet have tests
# but they should be compilable
exec "nim c premix/premix"
exec "nim c premix/persist"
exec "nim c premix/debug"
exec "nim c premix/dumper"
exec "nim c premix/hunter"
task nimbus, "Build Nimbus":
buildBinary "nimbus", "nimbus/"