nim-stew/stew.nimble

15 lines
477 B
Plaintext
Raw Normal View History

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