mirror of
https://github.com/status-im/nimPNG.git
synced 2025-02-06 17:54:07 +00:00
14 lines
319 B
Nim
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"
|