mirror of https://github.com/status-im/nimPNG.git
16 lines
356 B
Nim
16 lines
356 B
Nim
# Package
|
|
version = "0.2.4"
|
|
author = "Andri Lim"
|
|
description = "PNG encoder and decoder"
|
|
license = "MIT"
|
|
skipDirs = @["apng", "suite", "tester", "docs"]
|
|
|
|
# Deps
|
|
requires "nim >= 0.19.0"
|
|
|
|
task tests, "Run tests":
|
|
withDir("tester"):
|
|
exec "nim c -r test.nim"
|
|
exec "nim c -r testCodec.nim"
|
|
exec "nim c -r testSuite.nim"
|