nim-rlp/rlp.nimble

21 lines
415 B
Plaintext
Raw Normal View History

2018-01-25 19:22:13 +00:00
mode = ScriptMode.Verbose
packageName = "rlp"
version = "1.0.0"
author = "Status Research & Development GmbH"
description = "RLP serialization library for Nim"
license = "Apache2"
skipDirs = @["tests"]
requires "nim >= 0.17.0"
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
task test, "run CPU tests":
configForTests()
setCommand "c", "tests/all.nim"