nimPNG/nimPNG.nimble
2017-11-03 14:16:04 +02:00

15 lines
317 B
Nim

# Package
version = "0.1.8"
author = "Andri Lim"
description = "PNG encoder and decoder"
license = "MIT"
# Deps
requires "nim >= 0.11.2"
task tests, "Run tests":
withDir("tester"):
exec "nim c -r test.nim"
exec "nim c -r testCodec.nim"
exec "nim c -r testSuite.nim"