2018-11-10 00:16:09 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "json_serialization"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
2018-11-11 11:45:34 +00:00
|
|
|
description = "Flexible JSON serialization not relying on run-time type information"
|
2018-11-10 00:16:09 +00:00
|
|
|
license = "Apache License 2.0"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2022-11-24 12:49:34 +00:00
|
|
|
requires "nim >= 1.2.0",
|
2018-12-17 23:01:06 +00:00
|
|
|
"serialization",
|
2019-07-07 09:46:32 +00:00
|
|
|
"stew"
|
2018-11-10 00:16:09 +00:00
|
|
|
|
2022-11-24 12:49:34 +00:00
|
|
|
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"]
|
2022-01-06 19:10:03 +00:00
|
|
|
|
2022-11-24 12:49:34 +00:00
|
|
|
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" &
|
|
|
|
" -d:nimOldCaseObjects"
|
|
|
|
|
|
|
|
proc build(args, path: string) =
|
|
|
|
exec nimc & " " & lang & " " & cfg & " " & flags & " " & args & " " & path
|
|
|
|
|
|
|
|
proc run(args, path: string) =
|
|
|
|
build args & " -r", path
|
2019-03-13 23:39:10 +00:00
|
|
|
|
2020-12-24 09:32:59 +00:00
|
|
|
task test, "Run all tests":
|
2022-11-24 12:49:34 +00:00
|
|
|
for threads in ["--threads:off", "--threads:on"]:
|
|
|
|
run threads, "tests/test_all"
|