nim-rlp/rlp.nimble

25 lines
527 B
Plaintext
Raw Normal View History

2018-01-25 19:22:13 +00:00
mode = ScriptMode.Verbose
packageName = "rlp"
2018-02-16 15:28:19 +00:00
version = "1.0.1"
2018-01-25 19:22:13 +00:00
author = "Status Research & Development GmbH"
description = "RLP serialization library for Nim"
license = "Apache License 2.0"
skipDirs = @["tests"]
installDirs = @["rlp"]
bin = @["rlp/bin/rlp_inspect"]
2018-01-25 19:22:13 +00:00
2018-09-07 19:12:47 +00:00
requires "nim >= 0.17.0",
"ranges"
2018-01-25 19:22:13 +00:00
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
2019-01-10 22:29:20 +00:00
--threads: on
2018-01-25 19:22:13 +00:00
task test, "run CPU tests":
configForTests()
setCommand "c", "tests/all.nim"