mirror of
https://github.com/logos-storage/nim-bearssl.git
synced 2026-01-03 05:53:07 +00:00
* remove non-split api, bump version * 0.1.5 is the last version to support the old ABI * move cacert to certs/ * add compat shim for abi/cacert
40 lines
1.1 KiB
Nim
40 lines
1.1 KiB
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "bearssl"
|
|
version = "0.2.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "BearSSL wrapper"
|
|
license = "MIT or Apache License 2.0"
|
|
skipDirs = @["tests"]
|
|
|
|
requires "nim >= 1.2.0",
|
|
"unittest2"
|
|
|
|
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 styleCheckStyle = if (NimMajor, NimMinor) < (1, 6): "hint" else: "error"
|
|
let cfg =
|
|
" --styleCheck:usages --styleCheck:" & styleCheckStyle &
|
|
(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 & " -r", path
|
|
|
|
import strutils
|
|
|
|
task test, "Run tests":
|
|
for path in listFiles("tests"):
|
|
if not path.endsWith ".nim": continue
|
|
|
|
for args in [
|
|
"-d:debug",
|
|
"-d:release",
|
|
]: run args, path
|