blob: 561f1b9c9f8ddf1e978a77748bebb48ef1e463d6 (
plain) (
tree)
|
|
# Package
version = "0.2.1"
author = "Anonymous"
description = "Wrapper for the zip library"
license = "MIT"
skipDirs = @["tests"]
# Dependencies
requires "nim >= 0.10.0"
task tests, "Run lib tests":
withDir "tests":
exec "nim c -r ziptests"
exec "nim c -r zlibtests"
exec "nim c -r gziptests"
|