nimPNG/nimPNG.nimble
2020-04-14 13:58:50 +07:00

14 lines
319 B
Nim

# Package
version = "0.2.6"
author = "Andri Lim"
description = "PNG encoder and decoder"
license = "MIT"
skipDirs = @["tests", "docs"]
# Deps
requires "nim >= 0.19.0"
task tests, "Run tests":
exec "nim c -r -d:release tests/all_tests"
exec "nim c -r --gc:arc -d:release tests/all_tests"