zip.nimble 334 B

12345678910111213141516171819
  1. # Package
  2. version = "0.2.1"
  3. author = "Anonymous"
  4. description = "Wrapper for the zip library"
  5. license = "MIT"
  6. skipDirs = @["tests"]
  7. # Dependencies
  8. requires "nim >= 0.10.0"
  9. task tests, "Run lib tests":
  10. withDir "tests":
  11. exec "nim c -r ziptests"
  12. exec "nim c -r zlibtests"
  13. exec "nim c -r gziptests"