2023-12-13 09:08:13 +00:00
|
|
|
# json-serialization
|
2024-02-14 02:07:14 +00:00
|
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
2023-12-13 09:08:13 +00:00
|
|
|
# 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.
|
|
|
|
|
2018-11-10 00:16:09 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "json_serialization"
|
2024-10-19 09:28:17 +00:00
|
|
|
version = "0.2.9"
|
2018-11-10 00:16:09 +00:00
|
|
|
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"
|
2023-12-26 02:38:34 +00:00
|
|
|
skipDirs = @["tests", "fuzzer"]
|
2018-11-10 00:16:09 +00:00
|
|
|
|
2023-06-10 05:15:58 +00:00
|
|
|
requires "nim >= 1.6.0",
|
2018-12-17 23:01:06 +00:00
|
|
|
"serialization",
|
2024-10-15 11:24:47 +00:00
|
|
|
"stew",
|
|
|
|
"results"
|
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 cfg =
|
2023-06-10 05:15:58 +00:00
|
|
|
" --styleCheck:usages --styleCheck:error" &
|
2022-11-24 12:49:34 +00:00
|
|
|
(if verbose: "" else: " --verbosity:0 --hints:off") &
|
2024-01-01 12:07:04 +00:00
|
|
|
" --outdir:build --nimcache:build/nimcache -f" &
|
2022-11-24 12:49:34 +00:00
|
|
|
" -d:nimOldCaseObjects"
|
|
|
|
|
|
|
|
proc build(args, path: string) =
|
|
|
|
exec nimc & " " & lang & " " & cfg & " " & flags & " " & args & " " & path
|
|
|
|
|
|
|
|
proc run(args, path: string) =
|
2024-07-01 16:07:57 +00:00
|
|
|
build args & " --mm:refc -r", path
|
2024-02-14 02:07:14 +00:00
|
|
|
if (NimMajor, NimMinor) > (1, 6):
|
2024-07-01 16:07:57 +00:00
|
|
|
build args & " --mm:orc -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"
|