2017-11-03 14:16:04 +02:00
|
|
|
# Package
|
2020-04-10 12:54:40 +07:00
|
|
|
version = "0.2.6"
|
2015-08-28 22:56:55 +07:00
|
|
|
author = "Andri Lim"
|
|
|
|
description = "PNG encoder and decoder"
|
|
|
|
license = "MIT"
|
2020-04-10 12:54:40 +07:00
|
|
|
skipDirs = @["tests", "docs"]
|
2015-08-28 22:56:55 +07:00
|
|
|
|
2017-11-03 14:16:04 +02:00
|
|
|
# Deps
|
2018-10-02 10:07:05 +07:00
|
|
|
requires "nim >= 0.19.0"
|
2017-11-03 14:16:04 +02:00
|
|
|
|
|
|
|
task tests, "Run tests":
|
2020-04-10 12:54:40 +07:00
|
|
|
exec "nim c -r tests/test_apng.nim"
|
|
|
|
exec "nim c -r tests/test_codec.nim"
|
|
|
|
exec "nim c -r tests/test_suite.nim"
|
|
|
|
exec "nim c -r tests/test_nimz.nim"
|
|
|
|
|
|
|
|
exec "nim c -r -d:release tests/test_apng.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_codec.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_suite.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_nimz.nim"
|
|
|
|
|
|
|
|
exec "nim c -r --gc:arc -d:release tests/test_nimz.nim"
|