nim-json-serialization/json_serialization.nimble

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-11-10 00:16:09 +00:00
mode = ScriptMode.Verbose
packageName = "json_serialization"
2023-04-17 03:44:21 +00:00
version = "0.1.5"
2018-11-10 00:16:09 +00:00
author = "Status Research & Development GmbH"
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"]
requires "nim >= 1.6.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-11-24 12:49:34 +00:00
let cfg =
" --styleCheck:usages --styleCheck:error" &
2022-11-24 12:49:34 +00:00
(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
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"