nim-secp256k1/secp256k1.nimble

21 lines
546 B
Plaintext
Raw Normal View History

2018-01-05 01:02:25 +00:00
mode = ScriptMode.Verbose
packageName = "secp256k1"
version = "0.1.0"
2018-02-27 17:50:01 +00:00
author = "Status Research & Development GmbH"
2018-01-05 01:02:25 +00:00
description = "A wrapper for the libsecp256k1 C library"
2018-02-27 17:50:01 +00:00
license = "Apache License 2.0"
2018-09-18 14:04:52 +00:00
installDirs = @["secp256k1_wrapper"]
2018-01-05 01:02:25 +00:00
2018-03-28 10:40:14 +00:00
requires "nim >= 0.18.0"
2018-03-28 10:56:26 +00:00
proc test(name: string, lang: string = "c") =
if not dirExists "build":
mkDir "build"
--run
switch("out", ("./build/" & name))
setCommand lang, "tests/" & name & ".nim"
task test, "Run Proof-of-Work tests (without mining)":
test "test1"