22 lines
493 B
Nim
22 lines
493 B
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "keccak_tiny"
|
|
version = "0.2.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "A wrapper for the keccak-tiny C library"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests"]
|
|
|
|
requires "nim >= 0.17.0", "https://github.com/status-im/nim-ranges >= 0.0.1"
|
|
|
|
proc configForTests() =
|
|
--hints: off
|
|
--debuginfo
|
|
--path: "."
|
|
--run
|
|
|
|
task test, "run CPU tests":
|
|
configForTests()
|
|
setCommand "c", "tests/all.nim"
|
|
|