mirror of
https://github.com/status-im/nim-bncurve.git
synced 2025-02-20 16:58:37 +00:00
42 lines
1.2 KiB
Nim
42 lines
1.2 KiB
Nim
packageName = "bncurve"
|
|
version = "1.0.1"
|
|
author = "Status Research & Development GmbH"
|
|
description = "Barreto-Naehrig pairing-friendly elliptic curve implementation"
|
|
license = "Apache License 2.0 or MIT"
|
|
skipDirs = @["tests", "Nim", "nim"]
|
|
|
|
### Dependencies
|
|
|
|
requires "nim >= 1.6.0",
|
|
"nimcrypto",
|
|
"stint"
|
|
|
|
let nimc = getEnv("NIMC", "nim") # Which nim compiler to use
|
|
let lang = getEnv("NIMLANG", "c") # Which backend (c/cpp/js)
|
|
let flags = getEnv("NIMFLAGS", "") # Extra flags for the compiler
|
|
let verbose = getEnv("V", "") notin ["", "0"]
|
|
|
|
let cfg =
|
|
" --styleCheck:usages --styleCheck:error" &
|
|
(if verbose: "" else: " --verbosity:0 --hints:off") &
|
|
" --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f"
|
|
|
|
proc build(args, path: string) =
|
|
exec nimc & " " & lang & " " & cfg & " " & flags & " " & args & " " & path
|
|
|
|
proc run(args, path: string) =
|
|
build args & " --mm:refc -r", path
|
|
if (NimMajor, NimMinor) > (1, 6):
|
|
build args & " --mm:orc -r", path
|
|
|
|
task test, "Run all tests":
|
|
for tprog in @[
|
|
"tests/tarith",
|
|
"tests/tfields",
|
|
"tests/tgroups",
|
|
"tests/tpairing",
|
|
"tests/tether",
|
|
"tests/tvectors",
|
|
]:
|
|
run "--threads:on", tprog
|