2018-12-17 21:48:33 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "faststreams"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "Nearly zero-overhead input/output streams for Nim"
|
|
|
|
license = "Apache License 2.0"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
|
|
|
requires "nim >= 0.17.0",
|
2019-07-07 09:44:59 +00:00
|
|
|
"stew"
|
2018-12-17 21:48:33 +00:00
|
|
|
|
2020-03-24 14:29:57 +00:00
|
|
|
task test, "Run all tests":
|
|
|
|
exec "nim c -r --threads:off tests/all_tests"
|
|
|
|
exec "nim c -r --threads:on tests/all_tests"
|
2019-01-09 22:21:31 +00:00
|
|
|
|