nim-confutils/confutils.nimble

16 lines
461 B
Plaintext
Raw Normal View History

2018-11-21 13:25:53 +00:00
mode = ScriptMode.Verbose
packageName = "confutils"
version = "0.1.0"
author = "Status Research & Development GmbH"
description = "Simplified handling of command line options and config files"
license = "Apache License 2.0"
skipDirs = @["tests"]
2020-03-24 15:31:05 +00:00
requires "nim >= 1.0.0",
2020-10-20 08:35:47 +00:00
"stew"
2018-11-21 13:25:53 +00:00
2020-10-20 08:35:47 +00:00
task test, "Run all tests":
exec "nim c -r --threads:off -d:release tests/test_all"
exec "nim c -r --threads:on -d:release tests/test_all"