46 lines
1.5 KiB
Nim
46 lines
1.5 KiB
Nim
# json-serialization
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
# at your option.
|
|
# This file may not be copied, modified, or distributed except according to
|
|
# those terms.
|
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
packageName = "json_serialization"
|
|
version = "0.2.9"
|
|
author = "Status Research & Development GmbH"
|
|
description = "Flexible JSON serialization not relying on run-time type information"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests", "fuzzer"]
|
|
|
|
requires "nim >= 1.6.0",
|
|
"serialization",
|
|
"stew",
|
|
"results"
|
|
|
|
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") &
|
|
" --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 & " --mm:refc -r", path
|
|
if (NimMajor, NimMinor) > (1, 6):
|
|
build args & " --mm:orc -r", path
|
|
|
|
task test, "Run all tests":
|
|
for threads in ["--threads:off", "--threads:on"]:
|
|
run threads, "tests/test_all"
|