mirror of https://github.com/status-im/nimPNG.git
15 lines
335 B
Nim
15 lines
335 B
Nim
# Package
|
|
version = "0.3.1"
|
|
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 -v"
|
|
exec "nim c -r -d:release tests/all_tests"
|
|
exec "nim c -r --gc:arc -d:release tests/all_tests"
|