mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-16 01:45:40 +00:00
42 lines
1.1 KiB
Nim
42 lines
1.1 KiB
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "toml_serialization"
|
|
version = "0.2.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "Flexible TOML serialization [not] relying on run-time type information"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests", "assets"]
|
|
|
|
requires "nim >= 1.1.2",
|
|
"serialization",
|
|
"stew",
|
|
"https://github.com/status-im/nim-unittest2"
|
|
|
|
### Helper functions
|
|
proc test(env, path: string) =
|
|
# Compilation language is controlled by TEST_LANG
|
|
var lang = "c"
|
|
if existsEnv"TEST_LANG":
|
|
lang = getEnv"TEST_LANG"
|
|
|
|
when defined(macosx):
|
|
# cpp backend on macosx have mysterious bug
|
|
if lang == "cpp":
|
|
lang = "c"
|
|
|
|
when defined(windows) and defined(cpu64):
|
|
# crash upon `expect TomlError:`
|
|
if lang == "c":
|
|
lang = "cpp"
|
|
|
|
if not dirExists "build":
|
|
mkDir "build"
|
|
exec "nim " & lang & " " & env &
|
|
" --outdir:build -r --hints:off --skipParentCfg" &
|
|
" --styleCheck:usages --styleCheck:error " & path
|
|
|
|
task test, "Run all tests":
|
|
exec "nim -v"
|
|
test "--threads:off -d:release", "tests/test_all"
|
|
test "--threads:on -d:release", "tests/test_all"
|