mirror of https://github.com/status-im/nim-rlp.git
23 lines
486 B
Nim
23 lines
486 B
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "rlp"
|
|
version = "1.0.1"
|
|
author = "Status Research & Development GmbH"
|
|
description = "RLP serialization library for Nim"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests"]
|
|
bin = @["rlp/bin/rlp_inspect"]
|
|
|
|
requires "nim >= 0.17.0",
|
|
"ranges"
|
|
|
|
proc configForTests() =
|
|
--hints: off
|
|
--debuginfo
|
|
--path: "."
|
|
--run
|
|
|
|
task test, "run CPU tests":
|
|
configForTests()
|
|
setCommand "c", "tests/all.nim"
|