nim-serialization/serialization.nimble

36 lines
1.1 KiB
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
packageName = "serialization"
2023-12-27 09:03:41 +00:00
version = "0.2.2"
author = "Status Research & Development GmbH"
description = "A modern and extensible serialization framework for Nim"
license = "Apache License 2.0"
skipDirs = @["tests"]
requires "nim >= 1.6.0",
2018-12-17 23:00:00 +00:00
"faststreams",
2021-08-16 06:52:41 +00:00
"unittest2",
2019-07-07 09:50:26 +00:00
"stew"
2022-11-23 15:23:20 +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"]
let cfg =
" --styleCheck:usages --styleCheck:error" &
2022-11-23 15:23:20 +00:00
(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
2022-11-23 15:23:20 +00:00
task test, "Run all tests":
2022-11-23 15:23:20 +00:00
for threads in ["--threads:off", "--threads:on"]:
run threads, "tests/test_all"