nim-rlp/rlp.nimble

25 lines
677 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"]
bin = @["rlp/bin/rlp_inspect"]
# avoid being considered a binary-only package: https://github.com/nim-lang/nimble/blob/66d79bf9a0970542351988fa31f487a1e70144f7/src/nimblepkg/packageparser.nim#L280
installExt = @["nim"]
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
task test, "run CPU tests":
configForTests()
setCommand "c", "tests/all.nim"