2018-12-18 17:39:39 +02:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
2019-07-06 19:12:24 +02:00
|
|
|
packageName = "stew"
|
2018-12-18 17:39:39 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
2019-05-08 14:05:16 -06:00
|
|
|
description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
|
2018-12-18 17:39:39 +02:00
|
|
|
license = "Apache License 2.0"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2020-04-11 16:22:37 +02:00
|
|
|
requires "nim >= 1.2.0"
|
2019-07-06 20:00:37 +02:00
|
|
|
|
|
|
|
task test, "Run all tests":
|
|
|
|
exec "nim c -r --threads:off tests/all_tests"
|
2020-03-29 17:34:45 +02:00
|
|
|
exec "nim c -r --threads:on -d:nimTypeNames tests/all_tests"
|