mirror of
https://github.com/status-im/nimPNG.git
synced 2025-01-12 05:34:16 +00:00
15 lines
317 B
Nim
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"
|